fn run() { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); let mut it = s.trim().split_whitespace(); let a: i128 = it.next().unwrap().parse().unwrap(); let s: Vec = it.next().unwrap().chars().collect(); let b: i128 = s.iter().cloned().collect::().parse().unwrap(); if s[0] == '-' { println!("{}", a + b); } else { let mut m = 10; while m <= b { m *= 10; } let ans = m * a + b; println!("{}", ans); } } fn main() { run(); }