#include #include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); uint16_t N; cin >> N; if (N < 1200) cout << "green\n"; else cout << "difficult\n"; return 0; }