以前、コメントで教えてもらった方法でやってみる。
X,Y=map(int,input().split())
X,Y = Y,X
print(X,Y)
一発OKでした
これすっごく便利ですね。
次に行ってみる
これもさっきので解けます
N = int(input())
A = [int(input()) for _ in range(N)]
X,Y = map(int, input().split())
A[X-1],A[Y-1] = A[Y-1],A[X-1]
print(*A,sep="\n")