score = 0
name = input("Come on down, what is your name?")
intro = (f"\nWelcome {name} to 'Dad Joke Mania' the show where you finsh the dad joke with the correct punch line!\n")
#questionpick = input("Pick a number 1 - 5...")
question1 = input("Q: How to you make a space party? A:...")
question2 = input("Q: What do call a well-balenced horse A:...")
print(intro)
print(f"\n {intro} now answer this question {question1}\n")
if question1 == "you planet":
print("correct")
else:
print("Inocorrect :(")
print(f"\nNow answer this question {question2}\n")
if question2 == "stable":
print ("correct!")
else:
print("Inocorrect :(")