use proconio::input; fn main() { input! { x: usize, } let ans = match x { 0 | 4 | 10 => "Yes", _ => "No", }; println!("{ans}"); }