use proconio::input; fn main() { input! { mut x: i32, mut y: i32, }; let mut z = (x + 4) % 12; if z != y { println!("{}", z); return; } z = (x + 8) % 12; println!("{}", z); }