/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello World";
while (true) {
string choice;
cout << ">>> ";
std::getline(cin, choice);
if (choice == "hi") {
cout << "Whats up?" << endl;
} else {
cout << "error" << endl;
}
}
return 0;
}