import math m,n = list(map(int, input().split())) a = math.ceil(m/n) print(a) if m % n != 0 else print(a+1)