use proconio::input; fn main() { input! { x: usize, y: usize, } if x == y { println!("Yes"); } else { println!("No"); } }