종현

def t_f_to_t_c(t_f):
    return (t_f-32)*5/9

def mt_possible(t_c):
    if((t_c>=28)|(t_c<4)):
        print( "MT가 취소되었습니다 ㅠㅠ" )
        return 0
    elif(23<=t_c): 
        print("MT 다녀올 수 있어요 ! ")
        print("반팔과 반바지를 입을게..")
        return 1
    elif(20<=t_c):
        print("MT 다녀올 수 있어요 ! ")
        print("얇은 가디건도 챙겨 가야지 !")
        return 1
    elif(17<=t_c):
        print("MT 다녀올 수 있어요 ! ")
        print("긴팔 긴바지를 입자 ~ ")

    elif(12<=t_c):
        print("MT 다녀올 수 있어요 ! ")
        print("자켓을 걸쳐야겠어")

    elif(9<=t_c):
        print("MT 다녀올 수 있어요 ! ")
        print("트렌치코트 집에 있었나?")

    else:
        print("MT 다녀올 수 있어요 ! ")
        print("코트 챙겨야지 ,, ")

    
t_f = float(input())
t_c = t_f_to_t_c(t_f)
mt_possible(t_c)

현준

b =float(input())
a = (b-32)*(5/9)

if a>=28 :
    print("MT가 취소되었습니다 ㅠㅠ")
elif a<4 :
    print("MT가 취소되었습니다 ㅠㅠ")
else :
    print("MT 다녀올 수 있어요 !")
    if a >=23 :
        print("반팔과 반바지를 입을게..")
    elif a >=20 :
        print("얇은 가디건도 챙겨 가야지 !")
    elif a >=17 :
        print("긴팔 긴바지를 입자 ~")
    elif a >=12 :
        print("자켓을 걸쳐야겠어")
    elif a >=9 :
        print("트렌치코트 집에 있었나?")
    else :
        print("코트 챙겨야지 ,,")

승현

temp = float(input())
ctemp = (temp-32)*5/9
if ctemp >= 28 or ctemp<4:
    print("MT가 취소되었습니다 ㅠㅠ")
else:
    print("MT 다녀올 수 있어요 !")
    if 23<= ctemp <28:
        print("반팔과 반바지를 입을게..")
    elif 20<= ctemp < 23:
        print("얇은 가디건도 챙겨 가야지 !")
    elif 17<= ctemp < 20:
        print("긴팔 긴바지를 입자 ~ ")
    elif 12<= ctemp < 17:
        print("자켓을 걸쳐야겠어")
    elif 9<= ctemp < 12:
        print("트렌치코트 집에 있었나?")
    elif 4<= ctemp < 9:
        print("코트 챙겨야지 ,, ")