Koala - 6기/기초 알고리즘 스터디
[백준/Python] 14910번: 오르막
알 수 없는 사용자
2022. 3. 20. 17:06
코드
N = list(map(int,input().split()))
A = sorted(N)
if N == A:
print('Good')
else:
print('Bad')