#include int main() { int x=0; int y=0; cout << "Hello World"<< endl; cout << "Please enter a number: "; cin >> x; cout << "Please enter a second number: "; cin >> y; cout << x << " + " << y << " = " << x + y << endl; return 0; }