#include <iostream>
#include <string>
int main() {
std::string name;
int num1, num2;
// Ask for the user's name
std::cout \<\< "Enter your name: ";
std::getline(std::cin, name);
// Greet the user
std::cout \<\< "Hello, " \<\< name \<\< "!" \<\< std::endl;
// Ask for two numbers
std::cout \<\< "Enter the first number: ";
std::cin \>\> num1;
std::cout \<\< "Enter the second number: ";
std::cin \>\> num2;
// Add and display result
int sum = num1 + num2;
std::cout \<\< "The sum of the two numbers is: " \<\< sum \<\< std::endl;
return 0;
}