#include <stdio.h>
//1、 宏魔法
//#define n 0&0
//2、重载操作符
//struct MyInt {
// int value;
//};
//bool operator==(const MyInt& n1,const MyInt& n2){
// return false;
//}
//MyInt n;
//3、静态函数调用
//int func(){
// static int num=0;
// return num++;
//}
//#define n func()
//4、非数
double n=10.0 / 0.0 * 0.0;
int main(){
printf("%d\n",n == n);
return 0;
}