use proconio::input; fn main() { input! { a: i32, b: i32, } let n = if a % b == 0 { a / b } else { a / b + 1 }; println!("{}", n); }