12880: 绝对值

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:0

Description

求一个数的绝对值,大于等于0的数的绝对值为本身,负数的绝对值就是其去掉负号的值

Input

一行,一个整数

Output

一行,输出这个整数的绝对值

Sample Input Copy

-9

Sample Output Copy

9

HINT

abs 绝对值函数

如:abs(-1) 则输出 1