import math a,b = map(int,input().split()) floor = math.ceil(a/b) if a%b==0: floor += 1 print(floor)