a, b = gets.split.map(&:to_i) #スペース区切りの整数の入力 if a%b > 0 print a/b+1 else print a/b+1 end