import math
a = int(input())
b = int(input())
print(math.ceil(a/b))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
import math
a = int(input())
b = int(input())
print(math.ceil(a/b))