#include<iostream>
#include<string>
using namespace std;
bool isvowel(char ch)
{
    ch=tolower(ch);
    return(ch=='a'|| ch=='e'||ch=='i'||ch=='o'||ch=='u');
    
}
bool isValid(string str)
{
    for(char ch:str)
    {
        if (!(isalpha(ch)||ch==''))
        return false;
    }
    return true;
}
string removeVowels(string str)
{
    string result ="";
    for (char ch:str)
    {
        if (!isVowel(ch))
        return +=ch;
        
    }
    return result;
}
int main()
{
    string str;
    getline(cin,str);
    if(!isValid(str))
    {
        cout<<"Invalid Input";
    }else
    {
        cou
    }
}