#include <stdio.h>
#define A(x)                   \
    do                         \
    {                          \
        if (x)                 \
            printf("%d\n", x); \
    } while (0)

int main()
{
    int x = -5;
    if(x>0)
    A(x);
    else
    A(x);
    return 0;
}