fn main() { let mut input = String::new(); std::io::stdin().read_line(&mut input).unwrap(); let mut input = input.trim().split_whitespace(); let s: u32 = input.next().unwrap().parse().unwrap(); let f: u32 = input.next().unwrap().parse().unwrap(); println!("{}", s / f + 1); }