# fix the errors in this code
temp = int(input("Enter the temparature outside: "))

weather = input("Enter the weather type: ")

if weather == "sunny" and weather == "partly cloudy":
    print("wear suncreen")

if weather == "sunny" and temp < 35 or temp > 25 :
    print("let's have picnic")

if weather == "sunny" or "partly cloudy":
    print("let's go to the beach and have fun!")