package main import ( "fmt" ) func main() { var d int var a string fmt.Scan(&d) if d <= 100 { a = "Milk" } else { a = "Difficult" } fmt.Println(a) }