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