def zettaiti(n):
    if (n<0):
        return -n
    else:
        return n

n = int(input())
print(zettaiti(n))