#!/usr/bin/python
# abs.py

x = int(input("Please enter an integer: "))

if x < 0:
	x = -x
        print 'abs(x) = ',x
else:
        print 'abs(x) = ',x
	

