PROGRAMMING:Calculate the wages of employees
Given the information of N employees, including name, basic salary, floating salary and expenditure, the program is required to output the name and paid salary of each employee in sequence (paid salary = basic salary + floating salary expenditure).
###Input format:
The input gives a positive integer n on one line. Then n lines, each line gives the information of an employee, the format is "name basic salary floating salary expenditure", separated by a space. The "name" is a non empty string less than 10 in length, which does not contain white space characters. Other input and output are guaranteed to be within the single precision range.
###Output format:
According to the input order, output the name and paid salary of one employee in each line, with a space between them, and keep 2 decimal places of salary.
###Input example:
```in
three
zhao 240 400 75
qian 360 120 50
zhou 560 150 80
```
###Output example:
```out
zhao 565.00
qian 430.00
zhou 630.00
```
answer:If there is no answer, please comment
###Input format:
The input gives a positive integer n on one line. Then n lines, each line gives the information of an employee, the format is "name basic salary floating salary expenditure", separated by a space. The "name" is a non empty string less than 10 in length, which does not contain white space characters. Other input and output are guaranteed to be within the single precision range.
###Output format:
According to the input order, output the name and paid salary of one employee in each line, with a space between them, and keep 2 decimal places of salary.
###Input example:
```in
three
zhao 240 400 75
qian 360 120 50
zhou 560 150 80
```
###Output example:
```out
zhao 565.00
qian 430.00
zhou 630.00
```
answer:If there is no answer, please comment