S,F = map(int,input().split()) i = S / F if i > 0: print(int(i+1)) if i <= 0: print(1)