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