Traceback (most recent call last):
a = input(int())
b = input(int())
s = 0
for i in range(a, b + 1):
if i % 2 == 0:
s += i
else:
s -= 0
print(s)
Traceback (most recent call last):
File "C:\Users\senya\Desktop\python\vot.py", line 4, in
for i in range(a, b + 1):
TypeError: can only concatenate str (not "int") to str
Не понимаю где ошибка, буду рад если поможете