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```