/* -*- coding: utf-8 -*- * * 2557.cc: No.2557 緑以下コンテスト - yukicoder */ #include #include using namespace std; /* constant */ /* typedef */ /* global variables */ /* subroutines */ /* main */ int main() { int n; scanf("%d", &n); if (n < 1200) puts("green"); else puts("difficult"); return 0; }