# No.388 階段 (1) def main(): x, y = tuple(map(int, input().rstrip().split())) ans = x // y + 1 print(ans) if __name__ == "__main__": main()