use std::io::{self, Read}; fn read_stdin() -> Vec { let mut buffer = String::new(); io::stdin().read_to_string(&mut buffer).ok(); buffer.trim().split('\n').map(|s| s.to_string()).collect() } fn main() { let input = read_stdin(); let splitted = &input[0].split(' ').map(|s| s.parse::().unwrap()).collect::>(); let d = *&splitted[0]; let p = *&splitted[1]; println!("{}", d + (d * p / 100)); }