fn main() { let mut eye = String::new(); std::io::stdin().read_line(&mut eye).ok(); let eye = eye.trim(); let mut mouth = String::new(); std::io::stdin().read_line(&mut mouth).ok(); let mouth = mouth.trim(); println!("({0}{1}{0})/", eye, mouth); }