#include <bits/stdc++.h> using namespace std;
int main() { int x; cin >> x; if (x >= 5 && x % 2 == 1) { cout << "easy"; } else if (x >= 5 && x % 2 == 0) { cout << "difficult"; } else if (x < 5) { cout << "normal"; }
}
使用您的 蒙青创OJ 通用账户