#include <stdio.h>
   	int main(void) {
   	   	int c = 0;
   	   	printf("%s\n", c == c++ ? "yes it is" : "no it isn't");
   	   	return 0;
   	}
	