mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
14 lines
207 B
Python
14 lines
207 B
Python
def problem_p02922(input_data):
|
|
A, B = list(map(int, input_data.split()))
|
|
|
|
start = 1
|
|
|
|
for i in range(20):
|
|
|
|
if start >= B:
|
|
|
|
return i
|
|
|
|
break
|
|
|
|
start += A - 1
|