BOJ/Python

[BOJ/백준] 17903 - Counting Clauses (Python)

tjdms4327 2024. 8. 27. 18:16

문제 링크

 

단순히 8줄 이상이면 satisfactory를 출력하면 된다.

m,n=map(int, input().split())

if m>=8:
    print('satisfactory')
else:
    print('unsatisfactory')