use proconio::input; fn main() { input! { d: i32, }; let ans = if d <= 100 { "Milk" } else { "Difficult" }; println!("{}", ans); }