This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.") |