#include <math.h> #include <stdio.h> int main() { int n,sum; scanf("%d",&n); while(n) { sum+=n*pow(-1,n+1); n--; } printf("%d\n",sum); return 0; }