def main(): d = int(input()) if d <= 100: print("Milk") else: print("Difficult") if __name__ == "__main__": main()