use std::io; use std::str::FromStr; use std::str::Chars; use std::i32; use std::ascii::AsciiExt; use std::collections::HashMap; use std::io::prelude::*; fn main() { println!("{}",next_int()); } #[allow(dead_code)] fn next_string() -> String { let mut input = String::new(); io::stdin().read_line(&mut input).unwrap(); input } #[allow(dead_code)] fn next_strings() -> Vec { let input = next_string(); input.split_whitespace().map(|x| x.parse().unwrap()).collect() } #[allow(dead_code)] fn next_int() -> i64 { let input = next_string(); i64::from_str(input.trim()).unwrap() } #[allow(dead_code)] fn next_ints() -> Vec { let input = next_string(); input.split_whitespace().map(|x| x.parse().unwrap()).collect() }