use proconio::input; fn main() { input!{ a: usize, b: usize, } let mut ans: usize = a ^ b; println!("{}", ans) }