#include using namespace std; typedef long long ll; typedef string str; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); str s; getline(cin, s); if (s == "Zelkova and Cherry") cout << "1st\n"; else if (s == "BANNED CONTEST") cout << "2nd\n"; else if (s == "Stray Bullet") cout << "3rd\n"; else if (s == "Early Summer Rain") cout << "4th\n"; else cout << "Alpha\n"; return 0; }