# 1. Computer says
print ('hello')
# 2. Computer says
print ('whatz yo name?')
# 3. Make yourself a Cola-Cao
# 4. Answer Name
NAME = input ()
# 5. Leave a line
print (' ')
# 6. Computer says
print ('Nice to meet you, ' + NAME)
# 7. Leave a line
print (' ')
# 8. Computer says
print ('Whatz yo favourite colour? ')
# 9. Answer Colour
COLOUR = input ()
# 10. Leave a line
print (' ')
#11. Computer says
print (COLOUR + '? Are you sure? ' + NAME)
YESNO = input ()
#12. If the answer is yes or no or something different ...
if YESNO == ('yes'):
print ('yes? yack, i hate ' + COLOUR)
elif YESNO == ('no'):
print ('Not sure? Are you dumb or what?')
else:
print ('i fink u stink')
#13. Leave a line
print (' ')
#14 Question 1
print ('What is 5 + 99995?')
Q1 = input ()
if Q1 == ('100000'):
print ('You Da Boss!!!!!')
else:
print ('LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOSER!!!!!!')
print (' ')
#15 You continue it: Question 2