mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
12 lines
166 B
Python
12 lines
166 B
Python
def problem_p03272(input_data):
|
|
N, i = list(map(int, input_data.split()))
|
|
|
|
count = 0
|
|
|
|
while N >= i:
|
|
|
|
count += 1
|
|
|
|
N -= 1
|
|
|
|
return count
|