알고리즘 문제 풀기/Codeup
Codeup 1230 - 터널 통과하기 2
bug_maker
2018. 12. 31. 12:47
http://codeup.kr/problem.php?id=1230
Codeup 1230 - 터널 통과하기 2
xxxxxxxxxx
a, b, c = input().split()
a = int(a)
b = int(b)
c = int(c)
if(a <= 170):
print('CRASH ' + str(a))
elif(b <= 170):
print('CRASH ' + str(b))
elif(c <= 170):
print('CRASH ' + str(c))
else:
print('PASS')