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