1072: 绝对值

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:229 Solved:150

Description

给定一个浮点数 $n$,请输出其绝对值。

Input

一行,包含一个浮点数 $n$ ($|n| \le 10000$)。

Output

输出 $n$ 的绝对值(保留小数点后 $2$ 位)。

Sample Input Copy

-3.1415926

Sample Output Copy

3.14

Source/Category