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

int main() {
	string s = "Hello, world!";
	cout << typeid(" ").name() << endl;
	cout << typeid(' ').name() << endl;
	cout << typeid(s.at(0)).name() << endl;
	return 0;
}