1 #include <stdio.h>
2 
3 
4 int
main()5 main() {
6 	char	*p = 3 - 3;
7 
8 	if (p == NULL) {
9 		puts("good");
10 	}
11 	return 0;
12 }
13 
14