import math def input_split_line(): return list(map(int, input().split())) def solve(): a, b = input_split_line() return 1+a//b print(solve())