class A def initialize a, b = gets.chomp.split(' ').map(&:to_f) puts (b / a).ceil end end A.new