Created
May 31, 2022 03:37
-
-
Save mym0404/c09a35e05ffffb81a87e6e0b7fcc3bf9 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
n = int(input()) | |
arr = [int(input()) for _ in range(n)] | |
arr.sort() | |
for k in arr: | |
print(k) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment