# coding: utf-8 a,b = (int(x) for x in input().rstrip().split()) ans = a // b + 1 print(ans)