#include <stdio.h> // a comment
     
#ifndef X /* another comment */
  #error X not defined!
#endif
     
int main(void) {
	// your code goes here
	return 0;
}
