#include <stdio.h>
void main(void){
	int d = 0;
	scanf("%d",&d);
	if(d <= 100){
		printf("Milk");
	}else{
		printf("Difficult");
	}
}