#include #include #include using namespace std; int v = 1; void f (std::string filename) { ifstream s (filename.c_str ()); if (s.good ()) { char pole [16*1024]; s.read (pole, sizeof (pole)); int n = s.gcount (); s.close (); for (int i = 0; i < n; i ++) cout << pole [i]; } }