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

int main() {
long *ptr = NULL;
cout <<typeid(&ptr).name() << endl;
}