Ascending - MarisaOJ: Marisa Online Judge

Ascending

Time limit: 1000 ms
Memory limit: 256 MB
You are given 3 integers $a, b, c$. Print them in ascending order! ### Input - 3 integers $a, b, c$. ### Output - $a, b, c$ in ascending order. ### Constraints - $(1 \le a, b, c \le 1000)$. ### Example Input: ```8 3 9``` Output: ```3 8 9```