def n_ho(a, b) (b / a).ceil end a, b = gets.split(" ").map(&:to_f) p n_ho(a, b)