遍历并计数的方法

on=0
en=0
for x in range(1,int(input())+1):
    if x%2 == 0:
        en += 1
    else:
        on +=1
print(on,en)