print("0: Raincoat")
print("1: Swimsuit")
print("2: Parka")

weather = int(input("It is rainning outside what do you wear :"))

def SwitchExample(weather):
    switcher = {
        0: "Correct",
        1: "It is cloudy outside",
        2: "It is not cold enough",
    }
    return switcher.get(weather, "nothing")

if __name__ == "__main__":
    argument = 1
    print (SwitchExample(weather))