l = range(1,11)
for i in l:
    if i % 2 == 0:
        print(str(i) + "为偶数")
    else:
        print(str(i) + "为奇数")
