use proconio::input; fn main() { input! { a: usize, b: usize, } let ans = (b + a - 1) / a; println!("{ans}"); }