love = input('Please enter a sentence of love, otherwise the default is "I Love you": ') #
me = input('Please enter pen name, otherwise the default do not execute: ')
if love == '':
love = 'I Love you'
love = input('Please enter a sentence of love, otherwise the default is "I Love you": ') #
if love is '': love = "I Love You"
me = input('Please enter pen name, otherwise the default do not execute: ')
if me is "":pass
else:
print(love,me)