void getchar14() { char ch; while (1) { ch = getchar(); if(isalpha(ch)) { cout << "ch=" << ch << endl; } } }