#Write a Python program that prompts the user to enter his/her first and #last name The program prints the user's full name on one line (use operator + to #combine strings). #input first=input("enter first name ") last=input("enter last name ") #calculations and output print("my full name is:", first + ' ' + last)