Last active
April 27, 2017 19:39
-
-
Save brockthebear/4c94a56e54ecbc1b3992bd132633c3c7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
import sys | |
n = int(input().strip()) | |
arr = [int(arr_temp) for arr_temp in input().strip().split(' ')] | |
print(' '.join(map(str,reversed(arr)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment