PROGRAMMING:Yu Long's report card
###Task description
Yu Long's transcript used to be his pride. This time he did well in the exam. He wanted to print a neat transcript to his mother. You can program it.
###Input format:
There are four score data (real numbers) in a row, which represent the scores of C language, higher mathematics, linear algebra and College English respectively. The data are separated by a space.
###Output format:
Output the result sheet strictly according to the sample format. The table line is composed of characters +, - and, the total width of the second column is 10 characters, and there are 2 spaces between each score and the vertical line.
###Input example:
```in
100 99.5 98 90.25
```
###Output example:
```out
+------------------+----------+
|COURSE |GRADE |
+------------------+----------+
|C Language | 100.00 |
+------------------+----------+
|Higher Mathematics| 99.50 |
+------------------+----------+
|Linear Algebra | 98.00 |
+------------------+----------+
|College English | 90.25 |
+------------------+----------+
```
answer:If there is no answer, please comment
Yu Long's transcript used to be his pride. This time he did well in the exam. He wanted to print a neat transcript to his mother. You can program it.
###Input format:
There are four score data (real numbers) in a row, which represent the scores of C language, higher mathematics, linear algebra and College English respectively. The data are separated by a space.
###Output format:
Output the result sheet strictly according to the sample format. The table line is composed of characters +, - and, the total width of the second column is 10 characters, and there are 2 spaces between each score and the vertical line.
###Input example:
```in
100 99.5 98 90.25
```
###Output example:
```out
+------------------+----------+
|COURSE |GRADE |
+------------------+----------+
|C Language | 100.00 |
+------------------+----------+
|Higher Mathematics| 99.50 |
+------------------+----------+
|Linear Algebra | 98.00 |
+------------------+----------+
|College English | 90.25 |
+------------------+----------+
```
answer:If there is no answer, please comment