#include <iostream>
#include <string>
#include <sstream>

int main()
{
    double val = 643.1234567;
	std::stringstream str;
	str << std::fixed << val;
	
	std::string tekst = str.str();
	std::cout << tekst;
	
    return 0;
}