use std::io::Read; fn main(){ let mut input = "".to_owned(); std::io::stdin().read_to_string(&mut input).unwrap(); let mut input = input.split_ascii_whitespace(); macro_rules! read(($ty:ty) => (input.next().unwrap().parse::<$ty>().unwrap())); let a=read!(usize); let b=read!(usize); println!("{}",(b+a-1)/a); }