#include using namespace std; int main(){ string S; getline(cin, S); if (S == "Zelkova and Cherry"){ cout << "1st" << endl; } if (S == "BANNED CONTEST"){ cout << "2nd" << endl; } if (S == "Stray Bullet"){ cout << "3rd" << endl; } if (S == "Early Summer Rain"){ cout << "4th" << endl; } if (S == "Do you know Cherry Contest?"){ cout << "Alpha" << endl; } }