# Fullname.py (c) Kari Laitinen # http://www.naturalprogramming.com # 2006-03-02 File created. # 2022-12-16 Converted to Python 3. print( "\n Please, type in your first name: ", end="" ) first_name = input() print( "\n Please, type in your last name: ", end="" ) last_name = input() print( "\n Your full name is " + first_name + " " \ + last_name + "." ) # Another possibility to produce the desired output: print( "\n Your full name is %s %s." % ( first_name, last_name ) )