#include #include using namespace std; int main() { string name, best, worst; cout << "What is your name? "; cin >> name; cout << "Hello " << name << ", which is your favourite dwarf? "; cin >> best; cout << "And what do you hate most in the world? "; cin >> worst; cout << "\n"; cout << "Oh yes, I really hate " << worst << " too.\n\n"; } /* Tell it that your name is Herbert J. Smithson and your favourite dwarf is Sneezy and the thing you hate most is Nitrogen and see what it says to you. */