#include <bits/stdc++.h> using namespace std; int main() { int d; cin >> d; cout << (d <= 100 ? "Milk" : "Difficult") << endl; }