#include <iostream>
#include <typeinfo>

int main()
{
	auto a = {1, 2};
	std::cout << typeid(a).name() << std::endl;
}
