use proconio::input; fn main() { input! { x: u8, y: u8, } let ans = x ^ y; println!("{ans}"); }