adjective1 = raw_input('Enter an adjective and press enter. ')
adjective2 = raw_input('Enter another adjective and press enter. ')
noun1 = raw_input('Enter a noun (singular) and press enter. ')
adjective3 = raw_input('Enter an adjective and press enter. ')
noun2 = raw_input('Enter a noun (singular) and press enter. ')
verb1 = raw_input('Enter a past-tense verb and press enter. ')
verb2 = raw_input('Enter another verb and press enter. ')
noun3 = raw_input('Enter a noun (plural) and press enter. ')
adjective4 = raw_input('Enter an adjective and press enter. ')
adjective5 = raw_input('Enter an adjective and press enter. ')
print ' '
print 'The',adjective1,adjective2,noun1
print ' '
print 'The',adjective1,adjective2,noun1,'jumped over the',adjective3,'dog and into a',noun2 + '.'
print 'He',verb1,'all around for something to',verb2 + ','
print 'but only found a couple of lazy',noun3 + '.'
print 'Evenutally, the',adjective1,adjective2,noun1,'got',adjective4,'and laid down for a nap.'
print 'When he woke up, the',adjective3,'dog was',adjective5 + '!'