fn solve(numbers: &[i32]) -> i32 { match numbers { [a, b] => (b + a - 1) / a, _ => panic!("Expected exactly two integers"), } } fn main() { let mut input = String::new(); std::io::stdin().read_line(&mut input).unwrap(); let numbers: Vec = input .split_whitespace() .map(|x| x.parse().unwrap()) .collect(); println!("{}", solve(&numbers)); }