#include using namespace std; int main() { // 変数の宣言と入力 int n; cin >> n; // 条件に応じて文字列の出力 if(n < 1200) cout << "green"; else cout << "difficult"; }