Problem1115--§1 3. 输出绝对值

1115: §1 3. 输出绝对值

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

绝对值用来表示一个数至原点的距离大小。

输入一个浮点数,输出这个浮点数的绝对值,保留到小数点后两位。

Input

输入一个浮点数,其绝对值不超过 $10,000$。

Output

输出这个浮点数的绝对值,保留到小数点后两位。

Sample 1 Input

-3.14123

Sample 1 Output

3.14

Sample 2 Input

3

Sample 2 Output

3.00

Sample 3 Input

-4.5999

Sample 3 Output

4.60

Source/Category