#include<bits/stdc++.h> using namespace std; int main(){ char a; cin>>a; if(a>=49&&a<=90) cout<<"true"; else cout<<"false"; return 0; }