first = input() first_split = first.split() a=int(first_split[0]) #上がった段数 b=int(first_split[1]) #1階分の段数 c= a//b + 1 print(c)