#include using namespace std; int main() { string S; getline( cin, S ); string ans; vector> t{ {"Zelkova and Cherry", "1st"}, {"BANNED CONTEST", "2nd"}, {"Stray Bullet", "3rd"}, {"Early Summer Rain", "4th"}, {"Do you know Cherry Contest?", "Alpha"} }; for( int i = 0; i < (int)t.size(); i++ ) { if( S == t[i][0 ] ) { ans = t[i][1]; break; } } cout << ans << endl; }