#include <stdio.h>
#define CELSIUS *10

int main()
{
    int testVar=0;

    if(!testVar) testVar = 10 CELSIUS;
    printf("%d\n", testVar);
    
    return 0;
}
