6 lines
56 B
Python
6 lines
56 B
Python
x=int(input())
|
|
if x < 0:
|
|
print(-x)
|
|
else:
|
|
print(x)
|