#include using namespace std; int main(){ string input = ""; while(input != "chicken"){ cout << "Say the magic word: "; cin >> input; } cout << "You said it!" << endl; return 0; }