adjective = input("enter adjective here")
adjective2 = input("enter adjective here")
type_of_bird = input("what kind of bird")
room_in_a_house = input("room in a house")
verb1 = input("verb(past tense)")
verb2 = input("verb")
print("It was a " + adjective + ", cold November day. "
"I woke up to the " + adjective2 + " smell of " + type_of_bird +
" roasting in the " + room_in_a_house + " downstairs. I " + verb1 +
" down the stairs to see if I could help " + verb2 + " the dinner.")
print("Concatenated strings: " + str1 + str2)
print("Two strings with a space between them: " + str1, str2)