adjective = input("Tell me an adjective, and click enter. ") noun1 = input("Tell me a noun, and click enter. ") noun2 = input("Tell me another noun, and click enter.") verb = input("Tell me a verb (without ing), and click enter. ") print (noun1, "a", adjective, "programmer, learned Python to", end = " ") print (verb, "a", noun2)