#include using namespace std;int main(){ char ch; while ( (ch = cin.get()) != EOF) { cout << "ch: " << ch << endl; } cout << "\nDone!\n"; return 0;}