// Any extra templates used credit to https://github.com/nealwu/competitive-programming /**************************************************************************************/ /* FADE THE FUCK IN */ /************************************************************************************/ using namespace std; #include "bits/stdc++.h" /**********************DEFINES*********************************/ #define nline "\n" #define all(v) v.begin(), v.end() #define int int64_t // comment when using temp. /*************************************************************/ const int MOD = 1e9 + 7; // comment when using temp. const int MD = 998244353; /*************************************************************/ template inline istream &operator>>(istream& in, vector& a); template inline ostream &operator<<(ostream& os, const vector& a); template inline istream &operator>>(istream& in, pair& a); template inline ostream &operator<<(ostream& os, pair& a); /*************************************************************/ #ifdef DEBUG #define debug(args...) {dbg,args; cerr< debugger& operator , (const T& v) { cerr << v << " "; return *this; } } dbg; int dx[4] = { -1, 1, 0, 0}; int dy[4] = {0, 0, -1, 1}; void run_case(int tt) { string str; cin >> str; map mp = {{"Zelkova and Cherry", "1st"}, {"BANNED CONTEST", "2nd"}, {"Stray Bullet", "3rd"}, {"Early Summer Rain", "4th"}, {"Do you know Cherry Contest?", "Alpha"} }; cout << mp[str]; return; } signed main() { ios::sync_with_stdio(false); cin.tie(nullptr); int test_cases = 1; // cin >> test_cases; for (int t = 1; t <= test_cases; t++) { run_case(t); } } /********************************I/O****************************************/ template inline istream &operator>>(istream & in, vector& a) { for (auto &x : a)in >> x; return in; } template inline ostream &operator<<(ostream & os, const vector& a) { for (auto &x : a)os << x << " "; os << nline; return os; } template inline istream &operator>>(istream & in, pair& a) { in >> a.first >> a.second; return in; } template inline ostream &operator<<(ostream & os, pair& a) { os << a.first << " " << a.second << nline; return os; } /*************************************************************************/