// editor3
#include<iostream>
#include<string>
#include<cctype>
using namespace std;
bool is_digits_only(const string& s)
{
    if(s.empty())
    {
        return false;
    }
    for(char c:s)
    {
        if(isdigit(c))
        {
            return false;
        }
    }
    return true;
}
int main()
{
    string s1="1234567890";
    string s2="12a34";
    cout<<"Input: "<<s1<<",Output: "<<(isdigits_only(s1)?"True" : "False")<<endl;
    cout<<"Input: "<<s2<<",Output: "<<(isdigits_only(ss2)?"True" : "False")<<endl;
    return 0;
}