#include using namespace std; int main() { int d; cin >> d; if (d <= 100) cout << "Milk\n"; else cout << "Difficult\n"; return 0; }