import time
print("What is the animal?")
animal=input()
raw_input("Press enter to continue again")
print("What is the action?")
verb=input()
print("If it is a "+animal+", then it "+verb+".")
time.sleep(1)
print("If it "+verb+", then it is a "+animal+".")
time.sleep(1)
print("If it is NOT an "+animal+", then it "+verb+" NOT.")
time.sleep(1)
print("If it "+verb+" NOT, then it is NOT a "+animal+".")
time.sleep(1)
import time
print("What is the animal?")
animal=input()
print("What is the action?")
verb=input()
input("Press enter to continue again")
print("If it is a "+animal+", then it "+verb+".")
time.sleep(1)
print("If it "+verb+", then it is a "+animal+".")
time.sleep(1)
verb=verb[:-1]
print("If it is NOT an "+animal+", then it does NOT "+verb+".")
time.sleep(1)
print("If it does NOT "+verb+", then it is NOT a "+animal+".")
time.sleep(1)