1073 Scientific Notation
Statement
Metadata
- 作者: HOU, Qiming
- 单位: 浙江大学
- 代码长度限制: 16 KB
- 时间限制: 200 ms
- 内存限制: 64 MB
Scientific notation is the way that scientists easily handle very large numbers or very small numbers. The notation matches the regular expression [+-][1-9].
[0-9]+E[+-][0-9]+ which means that the integer portion has exactly one digit, there is at least one digit in the fractional portion, and the number and its exponent's signs are always provided even when they are positive.
Now given a real number
Input Specification
Each input contains one test case. For each case, there is one line containing the real number
Output Specification
For each test case, print in one line the input number
Sample Input 1
Sample Output 1
Sample Input 2
Sample Output 2