fn main() { //標準入力処理は https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 より一部を改変して引用 let s = { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); s.trim_right().to_owned() }; let y: u64 = s.parse().unwrap(); if y % 400 == 0 || (y % 100 != 0 && y % 4 == 0) { print!("Yes"); } else { print!("No"); } }