H,F=map(int,input().split()) if H%F==0: print(H//F+1) elif H//F!=0: print(H//F) else: print(1)