n = int(input())
ji = 0
ou = 0
for i in range(1, n+1):
    if i % 2 == 0:
        ou += i
    else:
        ji += i 
print(ji-ou)