Run ID:91640
提交时间:2024-09-22 11:26:42
a=input().split() n=a[0] k=a[1] n=int(n) k=int(k) b=n//k if n%k>=1: print(b+1) else: print(b)