test

Anonymous
plain_text
04/18/2023 2:13 PM
196 B
20
Indexable
a=int(input())
b=int(input())
answer = 0
while a<=b:
        if a % 2 != 0:
                answer += a
                a += 1
print(answer)
Editor is loading...