a, b = map(int, input().split()) if a%b == 0: ans = a//b + 1 else: ans = -(-a//b) print(ans)