Answers for "codeforces 233 a solution python"

0

codeforces 233 a solution python

n=int(input())
m=n+1
if n%2!=0 :
    print("-1")
else :
    for i in range (1,m) :
        if i%2==0 :
            print(i-1)
        else :
            print(i+1)
Posted by: Guest on September-06-2021

Code answers related to "codeforces 233 a solution python"

Python Answers by Framework

Browse Popular Code Answers by Language