use proconio::input; use proconio::fastout; #[allow(unused_imports)] use proconio::marker::*; #[fastout] fn main(){ input! { n: i32, } print!("{}", if n%400==0 { "Yes" }else if n %100==0{ "No" }else if n %4==0{ "Yes" }else{ "No" } ) }