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