use std::{ collections::{BTreeSet, HashMap}, hash::Hash, }; fn main() { proconio::input! { d: u64, p: u64, } println!("{}", d + d * p / 100); }