#include <stdio.h>

int main(void) {
	// your code goes here
	
	if('0'=='\0')
	  printf("iguais");
	else
	  printf("diferentes");
	
	printf("\n%s",NULL==0?"null==0":"null!=0");
	
	return 0;
}
