use proconio::input; fn main() { input! { s: i32, f: i32, } let ans = (s / f) + 1; println!("{}", ans); }