어떤 차의 높이가 170cm 이다.
터널의 높이가 차례대로 3개 주어지면 터널을 무사히 잘 통과하면 PASS 를 출력하고, 사고가 난다면 CRASH 를 출력하시오.a,b,c = map(int,input().split()) if a > 170 and b > 170 and c > 170 : print("PASS") else : print("CRASH")
a,b,c = map(int,input().split())
if a > 170 and b > 170 and c > 170 :
print("PASS")
else :
print("CRASH")