#include<iostream>
#include<string>
using namespace std;
bool isOnly(const string& s) {
    for(char c: s) {
        if(!isdigit(c)) {
            return false;
        }
    }
    return true;
}
int main() {
    string s;
    cin>> s;
    if(isOnlyDigits(s)) {
        cout<< "True" << endl;
    }else{
        cout<< "False" << endl;
        }
        return 0;
}