#include void main(void) { float a, b; cout << "Hello World\n"; cout << "How are you today\n"; cout << "Please enter a: "; cin >> a; cout << "Please enter b: "; cin >> b; cout << "The sum of " << a << " and " << b << " is: " << a+b; }