using namespace std; #include int main(){ int N; cin >> N; if(N<1200){ cout << "green" << endl; }else if (N>=1200){ cout << "difficult" << endl; } }