Write a Python program to request the user to type his/her first name and assign it to a variable called first_name. Then request the user to type his/her last name and store in the variable last_name. Then print the following message (in a single line):
Hi first_name last_name, how’s it going?
In the message variables must be replaced by their actual contents.