#include<bits/stdc++.h>
using namespace std;
int main()
{
string an;
int i = 1;
while(cin >> an && an != "#")
{
if(an == "HELLO")
cout << "Case " << i++ << ": " << "ENGLISH" << endl;
else if(an == "HOLA")
cout << "Case " << i++ << ": " << "SPANISH" << endl;
else if(an == "HALLO")
cout << "Case " << i++ << ": " << "GERMAN" << endl;
else if(an == "BONJOUR")
cout << "Case " << i++ << ": " << "FRENCH" << endl;
else if(an == "CIAO")
cout << "Case " << i++ << ": " << "ITALIAN" << endl;
else if(an == "ZDRAVSTVUJTE")
cout << "Case " << i++ << ": " << "RUSSIAN" << endl;
else
cout << "Case " << i++ << ": " << "UNKNOWN" << endl;
}
return 0;
}
Comments
Post a Comment