First= str( input("Enter your Firstname: ")) Last= str( input("Enter your Lastname: ")) Full = (First + " " + Last) print("Nice to Meet you", Full )