My first Python Program
name=input('What is your name? ')
print('My name is ' + name)
dob=input('When were you born? ')
print('I was born on '+ dob)
INFO
name=input('What is your name? ')
print('My name is ' + name)
dob=input('When were you born? ')
print('I was born on '+ dob)