use std::io::Read; fn main() { let mut input = String::new(); std::io::stdin().read_to_string(&mut input).unwrap(); let mut input = input.split_whitespace(); let n: usize = input.next().unwrap().parse().unwrap(); if n == 45 { println!("Yes"); } else { println!("No"); } }