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