fn main() { proconio::input! { n: String } if n == "2" { println!("0\nYes"); return; } println!("{}\nNo", n.into_bytes().pop().unwrap() % 2); }