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