// yukicoder Lv.1 No.56 消費税 use proconio::input; fn main() { input! { d: i32, p: i32, } let tax: i32 = (d * p) / 100; let total_price = d + tax; println!("{}", total_price); }