#include <bits/stdc++.h>
using namespace std;

int main(){
	int d;
	cin >> d;
	if(d <= 100)
		cout << "Milk\n";
	else
		cout << "Difficult";
}