Run ID:146133

提交时间:2026-01-26 21:34:43

a,b=input().split() a=int(a) b=int(b) c=a while a//b>=1: c=c+1 a=a-b a=a+1 print(c)