#include using namespace std; using ll = long long; using P = pair; #define fix(x) fixed << setprecision(x) #define asc(x) x, vector, greater #define rep(i, n) for(ll i = 0; i < n; i++) #define all(x) (x).begin(),(x).end() templatebool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;} templatebool chmax(T&a, const T&b){if(a> s; string t[] = {"Zelkova", "BANNED", "Stray", "Early", "Do"}; string ans[] = {"1st", "2nd", "3rd", "4th", "Alpha"}; rep(i,5){ if(s==t[i]) cout << ans[i] << '\n'; } return 0; }