PROGRAMMING:Calculate the cost of books
###Task description
The following is the unit price list of a Book: introduction to calculation 28.9 yuan / book, data structure and algorithm 32.7 yuan / book, digital logic 45.6 yuan / book, C + + programming course 78 yuan / book, artificial intelligence 35 yuan / book, computer architecture 86.2 yuan / book, compilation principle 27.8 yuan / book, operating system 43 yuan / book, computer network 56 yuan / book, Java programming 65 yuan / book. Given the quantity of each kind of books purchased, the total cost payable is calculated by programming.
###Input format:
Input a line, including 10 integers (greater than or equal to 0, less than or equal to 100), which respectively represent the purchased "Introduction to calculation", "data structure and algorithm", "digital logic", "C + + Programming Course", "artificial intelligence", "computer architecture", "compilation principle", "operating system", "computer network", "computer network" and so on The number of "Java programming" (in this unit). Every two integers are separated by a space.
###Output format:
The output line contains a floating-point number f, which represents the total expenses payable. Accurate to one decimal place.
###Input example:
```in
1 5 8 10 5 1 1 2 3 4
```
###Output example:
```out
two thousand one hundred and forty point two
```
###Title Source
Note: this topic is selected from openjudge website http://noi.openjudge.cn/ch0106/03/ .
answer:If there is no answer, please comment
The following is the unit price list of a Book: introduction to calculation 28.9 yuan / book, data structure and algorithm 32.7 yuan / book, digital logic 45.6 yuan / book, C + + programming course 78 yuan / book, artificial intelligence 35 yuan / book, computer architecture 86.2 yuan / book, compilation principle 27.8 yuan / book, operating system 43 yuan / book, computer network 56 yuan / book, Java programming 65 yuan / book. Given the quantity of each kind of books purchased, the total cost payable is calculated by programming.
###Input format:
Input a line, including 10 integers (greater than or equal to 0, less than or equal to 100), which respectively represent the purchased "Introduction to calculation", "data structure and algorithm", "digital logic", "C + + Programming Course", "artificial intelligence", "computer architecture", "compilation principle", "operating system", "computer network", "computer network" and so on The number of "Java programming" (in this unit). Every two integers are separated by a space.
###Output format:
The output line contains a floating-point number f, which represents the total expenses payable. Accurate to one decimal place.
###Input example:
```in
1 5 8 10 5 1 1 2 3 4
```
###Output example:
```out
two thousand one hundred and forty point two
```
###Title Source
Note: this topic is selected from openjudge website http://noi.openjudge.cn/ch0106/03/ .
answer:If there is no answer, please comment