Write a program that asks the user for their surname and forename (in that order), then prints a greeting.

Input

The program should prompt for:

  1. Enter your surname:
  2. Enter your forename:

Output

Hello surname, forename
How are you?

Where surname and forename are replaced by the values the user entered.

Example

Input:

Smith
John

Output:

Hello Smith, John
How are you?