Run ID:57466
提交时间:2023-09-03 15:21:09
n=int(input()) arr=[] for x in map(int,input().split()): arr.append(x) res=[] res.append(arr[n-1]) for i in range (0,n-1): res.append(arr[i]) for i in res: print(i,end=" ")