def main(): s, f = [int(x) for x in input().rstrip().split(" ")] n = int(s / f) print(n + 1) if __name__ == "__main__": main()