import sys
input = sys.stdin.readline
Milk = "Milk"
Difficult = "Difficult"
D = int(input())
if D<=100:
    print(Milk)
else:
    print(Difficult)