#include<iostream.h>#include<ctype.h>void main(){ int x; cin>>x; if(isdigit(x)) cout<<x<<" true "<<endl; cout<<isdigit(x)<<endl;}