// editor6
#include<iostream>
using namespace std;
boo;l isonlyDigits(const string &s){
    if(s.empty())return false;
    for(char c:s){
        if(!isdigit())return false;
        
    }
    return true;
    
}
int main(){
    string s;
    getline(cin,s);
    if(is onlyDigits(s)){
        cout<<"True"<<endl;
        
    }
    else{
        cout<<"False"<<endl;
        
    }
    return 0;
}