# Prompt the user to input their first name and store it in the 'fname' variable
fname = input('Input your First Name : ')
# Prompt the user to input their last name and store it in the 'lname' variable
lname = input('Input your Last Name : ')
# Display a greeting message with the last name followed by the first name
print('Hello ' + lname + ', ' + fname)
Bonus round: Try reversing the letters of your name.