use proconio::*; fn main() { input! { a: u8, b: u8, c: u8 } let s = a+b+c; let s: &str = if s > 3 { &s.to_string() } else { "Infinity" }; println!("A+B+C={s}"); }