use std::io; use std::io::prelude::*; fn main() { let stdin = io::read_to_string(io::stdin()).unwrap(); let mut stdin = stdin.split_whitespace(); let stdout = io::stdout(); let mut stdout = io::BufWriter::new(stdout.lock()); let a = stdin.next().unwrap().parse::().unwrap(); let b = stdin.next().unwrap().parse::().unwrap(); let s = stdin.next().unwrap(); writeln!(stdout, "{} {}", a + b, s); }