import sys

input = sys.stdin.buffer.readline

s, f = map(int, input().split())
print((s // f) + 1)