#include<stdio.h>
int main() {
#ifdef NDEBUG
printf("Non-debug\n");
#else
printf("Debug\n");
#endif
return 0;
}