← Back to List
17903번: Counting Clauses ↗
Solutions
Python 3
103 B | 103 chars
N, M = map(int,input().split()) if N >= 8: print("satisfactory") else: print("unsatisfactory")