#P0012. 三数排序
三数排序
1. Description
Rank three numbers in ascending order
2. Input & Output
Input:
- 3 integers in same line, separated by spaces
- Use
input()as input. Notice that the value you get frominput()is a string
Output:
- 3 integers in ascnding order
- The integers are in same line, separated by spaces
- Use
print()for your output
Example
# Input:
30 -10 5
# Output:
-10 5 30
# Input:
20 60 20
# Output:
20 20 60