PROGRAMMING:Find the maximum number and the minimum number
This topic requires reading in three integers a, B, C, find the maximum and minimum number, and output the result.
###Input format:
Enter three integers a, B, and C with absolute values no more than 1000 in one line, separated by spaces.
###Output format:
The maximum number and the minimum number in a row, "max =?, min=?”。
###Input example:
Here is a set of inputs. For example:
```in
18 98 59
```
###Output example:
The corresponding output is given here. For example:
```out
max=98,min=18
```
answer:If there is no answer, please comment
###Input format:
Enter three integers a, B, and C with absolute values no more than 1000 in one line, separated by spaces.
###Output format:
The maximum number and the minimum number in a row, "max =?, min=?”。
###Input example:
Here is a set of inputs. For example:
```in
18 98 59
```
###Output example:
The corresponding output is given here. For example:
```out
max=98,min=18
```
answer:If there is no answer, please comment