#include<iostream>
#include<typeinfo>
 
int main(){
    using namespace std;

    cout << typeid(int).name() << endl;
    cout << typeid(short).name() << endl;
    cout << typeid(long).name() << endl;
    cout << typeid(long long).name() << endl;
    cout << typeid(char).name() << endl;
    cout << typeid(unsigned).name() << endl;
    cout << typeid(float).name() << endl;
    cout << typeid(double).name() << endl;
    cout << typeid(short int).name() << endl;
    cout << typeid(long int).name() << endl;
    cout << typeid(unsigned char).name() << endl;
    cout << typeid(unsigned short).name() << endl;
    cout << typeid(unsigned long long).name() << endl;
    cout << typeid(long double).name() << endl;
    return 0;
}