// low-level.cpp #include <iostream> using namespace std; int main() { cout << "Press the ENTER key"; if (cin.get() == ' ') cout << "Good job. "; else cout << "I meant ONLY the ENTER key... Oh well. "; return 0; }