#21761: C answer


goodspeed (王宥翔)


#include<stdio.h>

int main() {

    int a;

    scanf("%d", &a);

    printf("%d", a * (-1 + (a >= 0) * 2));

}