단순히 8줄 이상이면 satisfactory를 출력하면 된다.
m,n=map(int, input().split())
if m>=8:
print('satisfactory')
else:
print('unsatisfactory')
'BOJ > Python' 카테고리의 다른 글
[BOJ/백준] 18330 - Petrol (Python) (0) | 2024.08.29 |
---|---|
[BOJ/백준] 18198 - Basketball One-on-One (Python) (0) | 2024.08.29 |
[BOJ/백준] 16727 - ICPC (Python) (0) | 2024.08.27 |
[BOJ/백준] 16600 - Contemporary Art (Python) (0) | 2024.08.27 |
[BOJ/백준] 15372 - A Simple Problem. (Python) (0) | 2024.08.27 |