Write a program that asks the user for their surname and forename (in that order), then prints a greeting.
The program should prompt for:
Enter your surname: Enter your forename: Hello surname, forename
How are you?
Where surname and forename are replaced by the values the user entered.
Input:
Smith
John
Output:
Hello Smith, John
How are you?