// use std::io::*; #[allow(unused_macros)] // 整数1つ読み込み(macro) macro_rules! read { ($($t:ty),*) => { { let mut input = String::new(); std::io::stdin().read_line(&mut input).ok(); let mut iter = input.split_whitespace(); ($(iter.next().unwrap().parse::<$t>().unwrap()),*) } }; } #[allow(unused_macros)] // 文字列1つ読み込み(macro) macro_rules! read_str { () => { { let mut input = String::new(); std::io::stdin().read_line(&mut input).ok(); input.trim().to_string() } }; } #[allow(unused_macros)] // 整数の1次元ベクトル読み込み(macro) macro_rules! read_vec { ($t:ty) => { { let mut input = String::new(); std::io::stdin().read_line(&mut input).ok(); input.trim().split_whitespace().map(|x| x.parse::<$t>().unwrap()).collect::>() } }; } #[allow(unused_macros)] // 文字列の1次元ベクトル読み込み(macro) macro_rules! read_str_vec { () => { { let mut input = String::new(); std::io::stdin().read_line(&mut input).ok(); input.trim().split_whitespace().map(|x| x.to_string()).collect::>() } }; } fn main() { let (a, b) = read!(usize, usize); let s = read_str!(); let c = a + b; println!("{} {}", c, s); }