1print("mad libs game")
2print("fill each below to go to next question after you typed the first one press enter to go to the scond one ")
3
4
5name = input("Enter a name: ")
6age = input("Enter a age: ")
7celebrity = input("Enter a celebrity: ")
8
9print("There once was a man named " + name)
10print("He was "+ age)
11print("He Love "+celebrity)