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