import math def main(a): b = math.floor(a[0]/a[1])+1 print(b) if __name__ == "__main__": li = list(map(int, input().split())) main(li)