#!/usr/bin/env python3 adj1 = input('Adjective: ') noun1 = input('Noun: ') noun2 = input('Noun: ') adj2 = input('Adjective: ') noun3 = input('Noun: ') print('How to Throw a Party') print() print('If you are looking for a/an', adj1, 'way to') print('celebrate your love of', noun1 + ', how about a') print(noun2 + '-themed costume party? Start by') print('sending invitations encoded in', adj2, 'format') print('giving directions to the location of your', noun3 + '.')