use proconio::{fastout, input}; #[fastout] fn main() { input! { n: u16, } println!("{}", output(solve(n))) } fn solve(n: u16) -> bool { n % 90 == 0 && n % 180 != 0 } fn output(ans: bool) -> &'static str { match ans { true => "Yes", false => "No", } }