# Arup Guha
# 2/10/2012
# Example showing how to read in multiple tokens at once.

def main():

    # Read in the whole line.
    line = input("Enter your first and last name by your age.\n")

    # Split it into its separate components.
    mylist = line.split()

    # Show the components.
    print(mylist)

    # Separate out each component.
    firstname = mylist[0]
    lastname = mylist[1]
    age = int(mylist[2])

    print("Hello,",firstname,lastname,"you must be",age,"years old.")

main()
    

    
