Useful little program.
# This program determines if you are named Mark. If you aren't named Mark,
# the program will walk away. If you are named Mark, you and the program
# can go to the secret clubhouse and eat pizza and play pinball. Also
# people who spell their name "Marc" aren't allowed in the clubhouse.
print('"What is your name? I really hope it is Mark."')
myName = input().lower()
if myName == 'marc':
print('Oh... You spell your name with a "c." That\'s so... \
cool...? of you. Well I have got a LOT of things to do \
today so I will just be moseying along. Reeeeeal good to \
meet you though."')
print('The computer program abruptly walks away.')
if myName != 'mark' and myName != 'marc':
print('"Nice to meet you, ' + myName + '. I wish you were Mark. \
Well I have got a LOT of things to do today so I will just be \
moseying along. Reeeeeal good to meet you though."')
print('The computer program abruptly walks away.')
if myName == 'mark':
print('"I\'m really happy to see you, Mark! All I have seen today are \
losers with loser names that aren\'t Mark. Want to go to the secret \
clubhouse for people with the name Mark?"')
print('Type "yes" or "no"')
answer1 = input()
if answer1 == 'yes':
print('"Yeah cool lets ditch these losers."')
print('You and your new computer program friend go to the secret \
clubhouse where you play pinball and eat pizza.')
if answer1 == 'no':
print('"Thats cool, Mark. I\'ll meet up with you tomorrow and \
we can go then. See you later!"')