Skip to content

Instantly share code, notes, and snippets.

B = input("Type anything to show title ")
print ("The title is (Title)")
A = input("Type anything to start story, Otherwise type Exit exactly as shown to Close program ")
if A == ("Exit"):
exit()
print("This is paragraph one.")
A = input("Type anything to continue story, Otherwise type Exit exactly as shown to Close program ")
if A == ("Exit"):
exit()
print("This is paragraph two.")