본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 31775번 글로벌 포닉스

by 현장 2024. 4. 29.

-Code

res = []

for _ in range(3):
    s = input()
    res.append(s[0])

print("GLOBAL" if sorted(res) == ['k', 'l', 'p'] else "PONIX")