#include <iostream>
#include <string>
int main()
{
std::string str = "10";
int n = std::stoi(str);
n *= 10;
str = std::to_string(n);
std::cout << str << '\n';
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8c3RyaW5nPgppbnQgbWFpbigpCnsKICAgIHN0ZDo6c3RyaW5nIHN0ciA9ICIxMCI7CiAgICBpbnQgbiA9IHN0ZDo6c3RvaShzdHIpOwogICAgbiAqPSAxMDsKICAgIHN0ciA9IHN0ZDo6dG9fc3RyaW5nKG4pOwogICAgc3RkOjpjb3V0IDw8IHN0ciA8PCAnXG4nOwp9Cg==