Sort List

Easy

📝 Description

Sort a list of integers in ascending order

Input Format

A list of integers

Output Format

Sorted list of integers

Constraints

List length ≤ 100

🔍 Sample Input

5 3 8 1 4
            

✅ Sample Output

1 3 4 5 8
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run