Preparando MOJI

Exponential notation

2000ms 262144K

Description:

You are given a positive decimal number x.

Your task is to convert it to the "simple exponential notation".

Let x = a·10b, where 1 ≤ a < 10, then in general case the "simple exponential notation" looks like "aEb". If b equals to zero, the part "Eb" should be skipped. If a is an integer, it should be written without decimal point. Also there should not be extra zeroes in a and b.

Input:

The only line contains the positive decimal number x. The length of the line will not exceed 106. Note that you are given too large number, so you can't use standard built-in data types "float", "double" and other.

Output:

Print the only line — the "simple exponential notation" of the given number x.

Sample Input:

16

Sample Output:

1.6E1

Sample Input:

01.23400

Sample Output:

1.234

Sample Input:

.100

Sample Output:

1E-1

Sample Input:

100.

Sample Output:

1E2

Informação

Codeforces

Provedor Codeforces

Código CF691C

Tags

implementationstrings

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:07:43

Relacionados

Nada ainda