#include #include using namespace std; int main () { fstream fin; char c; int filesize = 0; fin.open ("lab19in.txt", ios::in); fin.get (c); while (fin) { filesize++; cout << c; fin.get (c); }; fin.close (); cout << endl << filesize << endl; return 0; }