#Title: Rain or Shine #Author: Jade Egan Powell #Date: 8/06/26 #Version:4 #Purpose: To ask a question and get an answer weather = input("What is the weather doing from either rain or shine?") if weather == "rain": print("You should wear a raincoat") else: print("You don't need a raincoat") #display output print("The program has ended.")