# this program says hello and ask my name.
print('Hello World')
print('Whats your name?')
myname = input()
print('its good to meet you, ' + myname) #ask for my name
print('the length of your name is : ')
print(len(myname))
print('whats your age?')#ask for my age
myage = input()
print('you will be ' + str(int(myage) + 1) + 1 'in a year')
I see syntax error at line 10 of the code i see all the parenthesis are correctly placed.