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