Skip to content

Instantly share code, notes, and snippets.

@mym0404
Created May 31, 2022 03:37
Show Gist options
  • Save mym0404/c09a35e05ffffb81a87e6e0b7fcc3bf9 to your computer and use it in GitHub Desktop.
Save mym0404/c09a35e05ffffb81a87e6e0b7fcc3bf9 to your computer and use it in GitHub Desktop.
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