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