#include <stdio.h>
#define macro(x) 42
int (macro)(int x) { return x; }
int main(void) {
    printf("%d %d\n", macro(1), (macro)(1));
}