#Title: rain or shine #Author: kaio #Date:17/6/25 #version:V1 #Purpose:to tell you if you need a raincoat or not print('Welcome to the raincoat program') print ('to use this program you will need to enter either rain or shine') weather = input("what is the weather from either rain or shine") if weather == " rain": print(' you should wear a raincoat today. ') else: print('you should not wear a raincoat today.') print(' This program has ended. ')