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