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

int main() {
	

	
	std::cout << typeid(7).name() << "\n";
	std::cout << typeid(7.0).name() << "\n";
	
	// your code goes here
	return 0;
}