#print absolute value of an integer: a = 100 if a >= 0: print(a) else: print(-a)