def absolute(x):
if x >= 0:
return x
else:
return -x
print(absolute(3))
print(absolute(-119))
01-09
1740

def absolute(x):
if x >= 0:
return x
else:
return -x
print(absolute(3))
print(absolute(-119))