Sắp xếp

View as PDF



Problem type
Points: 10 Time limit: 1.0s Memory limit: 256M Input: stdin Output: stdout

An mới học về sắp xếp nên còn bỡ ngỡ. Bạn hãy giúp An sắp xếp lại \(3\) số theo thứ tự tăng dần nhé.

Input

  • \(3\) số nguyên dương \(a, b, c\) (\(1 \le a, b, c \le 10^{5}\)).

Output

  • Dãy số sau khi sắp xếp, mỗi số cách nhau một dấu cách.

Example

Test 1
Input
5 3 4
Output
3 4 5
Test 2
Input
2 1 6
Output
1 2 6

Comments

There are no comments at the moment.