Skip to content

Instantly share code, notes, and snippets.

@ProtoJazz
Created September 28, 2016 02:05
Show Gist options
  • Select an option

  • Save ProtoJazz/e3733555662b333a2981795baf54d4bd to your computer and use it in GitHub Desktop.

Select an option

Save ProtoJazz/e3733555662b333a2981795baf54d4bd to your computer and use it in GitHub Desktop.
#!/bin/python3
import sys
n = int(input().strip())
arr = [int(arr_temp) for arr_temp in input().strip().split(' ')]
arr = arr[::-1]
print(*arr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment