#include <iostream>
#include <sstream>
#include <fstream>
int main()
{
std::ifstream input("file.txt");
std::stringstream sstr;
while(input >> sstr.rdbuf());
std::cout << sstr.str() << std::endl;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8c3N0cmVhbT4KI2luY2x1ZGUgPGZzdHJlYW0+CgppbnQgbWFpbigpCnsKICBzdGQ6Omlmc3RyZWFtIGlucHV0KCJmaWxlLnR4dCIpOwogIHN0ZDo6c3RyaW5nc3RyZWFtIHNzdHI7CgogIHdoaWxlKGlucHV0ID4+IHNzdHIucmRidWYoKSk7CgogIHN0ZDo6Y291dCA8PCBzc3RyLnN0cigpIDw8IHN0ZDo6ZW5kbDsKfQ==