etc/Coding Test
[codeup] 127. 터널 통과하기 1
알 수 없는 사용자
2022. 1. 26. 00:00
728x90
a,b,c = map(int, input().split())
if a > 170 and b > 170 and c > 170:
print('PASS')
else:
print('CRASH')