#include <stdio.h>
#define Inverse(A) -A

int main(void)
{
    int x = 8;
    
    int y = - Inverse(x+3);
    printf("%d", y);
}