#include <stdio.h>
#define pook printf("%d\n", __LINE__)

int main(void) {
    pook;
    pook;
    pook;
    return 0;
}
