#include <string>
#include <iostream>

int main()
{
	std::string str;
	str = 100.0;
	
	std::cout<<str;
	
	return 0;
}