def main(): n = int(input()) nums = list(map(int, input().split())) print(' '.join(map(str, reversed(nums)))) if __name__ == '__main__': main()