use proconio::input; use proconio::{marker::*}; fn main() { input! { a: usize, b: usize, c: usize, }; println!("{}", a^b^c); }