// editor4
#include<iostream>
#include<cctype>
using namespace std;
int main()
{
    string s,r ="";
    getline(cin,s);
    for(char c : s)
    {
        if(isdigit(c))
        {
            cout<<"Invalid input";
            return 0;
        }
        if(c 1= '')
        r += c;
    }
    cout<< r;
    return 0;
}