A, B = map(int, input().split()) a = (A/B) if A%B !=0: a = a+1 a = int(a) print(a)