Problem Description

A number is provided as a string, it may be in scientific notation like 1e3 or 2.50E-1. Output it as normal decimal without exponent and remove extra trailing zeros.

Input Format

One number as string.

Output Format

One normalized decimal string.

Sample Test Case

Input:
2.50E-1
Output:
0.25

Constraints

Input length

Solutions (0)

No solutions submitted yet. Be the first!

Discussion (0)

No comments yet. Start the discussion!

Prev Next