# coding:utf-8 from math import ceil S, F = map(int, input().split()) if S % F != 0: print(ceil(S / F)) else: print(ceil(S / F) + 1)