use std::io; fn main() { let mut input = String::new(); io::stdin().read_line(&mut input).unwrap(); let mut input = input.trim().split_whitespace(); let d: u32 = input.next().unwrap().parse().unwrap(); let p: u32 = input.next().unwrap().parse().unwrap(); println!("{}", ((d as f32) * (1.0 + (p as f32) / 100.0)) as u32 ); }