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