游客 Signup | Login
中文 | En

2928 - 绝对值

通过次数

0

提交次数

0

Time Limit : 1 秒 Memory Limit : 128 MB

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

Input

一行,一个整数

Output

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

Examples

Input Format

-9

Output Format

9

Hint

abs 绝对值函数

如:abs(-1) 则输出 1