728x90
반응형
단순 구현 문제이다.
for _ in range(int(input())):
li = list(map(int, input().split()))
print(*li, end=' ')
print("Seems OK" if sum(li) == 180 else "Check")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 4458번 첫 글자를 대문자로(python) (0) | 2021.03.08 |
---|---|
백준 알고리즘 4328번 기초 나머지 계산(python) (0) | 2021.03.08 |
백준 알고리즘 15340번 Sim Card(python) (0) | 2021.03.08 |
백준 알고리즘 14782번 Bedtime Reading, I(python) (0) | 2021.03.08 |
백준 알고리즘 14541번 Speed Limit(python) (0) | 2021.03.08 |