use proconio::input; fn main() { input! { n: usize } let ans = if n % 2 == 0 { n / 2 } else { 1 }; println!("{ans}"); }