a, b = map(int, input().strip().split()) quotient, remainder = divmod(a, b) if remainder != 0: quotient += 1 print(quotient)