123456789101112# This program says hello and asks for my name.print('Hello world!')print('What is your name?') # ask for their namemyName = input()print('It is good to meet you, ' + myName)print('The length of your name is:')print(len(myName))print('What is your age?') # ask for their agemyAge = input()print('You will be ' + str(int(myAge) + 1) + ' in a year.')