msg = "Welcome to our joking system!"
joke_horse_1='''What do horses eat before the race?
Fast food!'''
print (msg)
print("=======================================")
print (joke_horse_1)
print("=======================================")
joke_horse_2='''What do you call a horse that lives next door?
Your neigh-bor!'''
print(joke_horse_2)
print("=======================================")
joke_can_opener=''' What do you call a can opener that doesn\'t work?
A can\'t opener!'''
print (joke_can_opener)
print("=======================================")
Click Run or press shift + ENTER to run code