use std::io::{self, BufRead}; fn main() { io::stdin().lock().lines().for_each(|l| { let input = l .unwrap() .split_whitespace() .map(|n| n.parse::().unwrap()) .collect::>(); if let &[s, f] = &input[..] { println!("{}", s / f + 1); } }); }