The smallest and biggest - MarisaOJ: Marisa Online Judge

The smallest and biggest

Time limit: 1000 ms
Memory limit: 256 MB
You are given 3 integers $a, b, c$. Print the smallest and biggest number! ### Input - 3 integers $a, b, c$. ### Output - The smallest number and the biggest number. ### Constraints - $(1 \le a, b, c \le 1000)$. ### Example Input: ```4 3 4``` Output: ```3 4```