#include #include using namespace std; int main() { string junk; while(1){ cout << "press enter to continue"; getline(cin,junk); cout << endl; cout << "You did it" << endl; } return 0; }