use proconio::input; fn main() { input! { n: usize, } let ans = if n < 1200 { "green" } else { "difficult" }; println!("{ans}"); }