PROGRAMMING:Minimum return to zero
Input several positive integers (at least one) and output the result of subtracting the minimum value from each number.
###Input format:
Enter several positive integers on a line, separated by spaces.
###Output format:
Output the result of subtracting the minimum value from each number( Spaces between integers, no spaces at the end)
###Input example:
Here is a set of inputs. For example:
```in
4 5 67 3 99 2 7
```
###Output example:
The corresponding output is given here. For example:
```out
2 3 65 1 97 0 5
```
answer:If there is no answer, please comment
###Input format:
Enter several positive integers on a line, separated by spaces.
###Output format:
Output the result of subtracting the minimum value from each number( Spaces between integers, no spaces at the end)
###Input example:
Here is a set of inputs. For example:
```in
4 5 67 3 99 2 7
```
###Output example:
The corresponding output is given here. For example:
```out
2 3 65 1 97 0 5
```
answer:If there is no answer, please comment