PROGRAMMING:JMU Python wage increase
Enter a set of salary data and write it to the list. For wages less than 5000, increase 1.5 times. And output the wage data after the increase.
###Input format:
The data is separated by spaces
###Output format:
The data after the wage increase are separated by spaces. There are no spaces at the end.
###Input example:
```in
3000 4000 6000 8000 2000.5
```
###Output example:
```out
4500.0 6000.0 6000 8000 3000.75
```
answer:If there is no answer, please comment
###Input format:
The data is separated by spaces
###Output format:
The data after the wage increase are separated by spaces. There are no spaces at the end.
###Input example:
```in
3000 4000 6000 8000 2000.5
```
###Output example:
```out
4500.0 6000.0 6000 8000 3000.75
```
answer:If there is no answer, please comment