아래의 코드를 실제로 실행 해보고, SNS에 게시를 해 주신 분들을 대상으로

22년도 하반기 E*5 KAIST 기념품 (로고 그립톡, 노트북 스티커)을 드립니다 🙂

                                                                               (수령시기 9월 15일 이후) 

@startupkaist 언급, #학생창업경진대회 #E5KAIST 태그!

# -*- coding: euc-kr -*-
import sys
import io

sys.stdout = io.TextIOWrapper(sys.stdout.detach(), encoding = 'utf-8')
sys.stderr = io.TextIOWrapper(sys.stderr.detach(), encoding = 'utf-8')

def E5_KAIST(x, y, z):
    if x=="Yes" and z=="Yes":
        result=y
    else:
        result=0
    return result

STARTUP="E*5 KAIST"
E5="Enthusiastic, Educated, Experienced, Excited, Encouraged"

Idea=input("Do you have any start-up ideas? (Yes or No)")
Passion=input("Express your passion for start-up in numbers of 0-100.")
KAISTian=input("Are you a KAISTian? (Yes or No)")
Index=round(float(E5_KAIST(Idea, Passion, KAISTian)))
Count=0

for chr in E5:
    if chr=="E":
        Count=Count+1

if Index>=90:
    print("Try total "+str((((Index-18)//12)*((len(STARTUP)-1))//2*(Count**3))/100)+" million  won in prize money!")
else:
    print("E*5 KAIST is always open to you.")