#include <iostream>
#include <string>
#include <boost/lexical_cast.hpp>
int main()
{
std::string str = "10";
int n = boost::lexical_cast<int>(str);;
n *= 10;
str = boost::lexical_cast<std::string>(n);
std::cout << str << '\n';
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8c3RyaW5nPgojaW5jbHVkZSA8Ym9vc3QvbGV4aWNhbF9jYXN0LmhwcD4KaW50IG1haW4oKQp7CiAgICBzdGQ6OnN0cmluZyBzdHIgPSAiMTAiOwogICAgaW50IG4gPSBib29zdDo6bGV4aWNhbF9jYXN0PGludD4oc3RyKTs7CiAgICBuICo9IDEwOwogICAgc3RyID0gYm9vc3Q6OmxleGljYWxfY2FzdDxzdGQ6OnN0cmluZz4obik7CiAgICBzdGQ6OmNvdXQgPDwgc3RyIDw8ICdcbic7Cn0K