#title: rain or shine #author: Brad Law #date: 13/11/2025 #version: v1 #purpose: ask what it the weather doing 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 rain coat") print("the program has ended.")