#include <sstream>

using namespace std;

int main(void)
{
	ostringstream out;
	out << "I am " << 18.0 << " years old.";
	return 0;
}
