#include <stdio.h>
#include <stdlib.h>
int main(void) {
#ifdef NDEBUG
printf("NDEBUG=1\n");
#else
printf("NDEBUG=0\n");
#endif
return 0;
}