#include <iostream>
#include <typeinfo>
using namespace std;

int main()
{
	cout << typeid(NULL).name() << endl;
	cout << typeid((void*)0).name() << endl;
	return 0;
}