#include <iostream>
#include <typeinfo>

int main()
{
  float f = 5.0f;
  std::cout << typeid(f * 100).name() << '\n';
}
