def stair(S, F): if F/S <=0: now =1 else: now =1+(S+F-1)//F return(now) S, F= map(int, input().split()) result =stair(S, F) print(result)