fn main() { let stdin = std::io::read_to_string(std::io::stdin()).unwrap(); let mut stdin = stdin.split_ascii_whitespace(); let n: u8 = stdin.next().unwrap().parse().unwrap(); println!("{}", output(solve(n))); } fn solve(n: u8) -> bool { match n { 0 | 4 | 10 => true, _ => false, } } fn output(ans: bool) -> &'static str { match ans { true => "Yes", false => "No", } }