728x90
반응형

단순 문자열 & 구현 문제이다.

N = int(input())
S = input()
res = ''
for c in S:
    if c not in "JAVA":
        res += c
print(res if res else "nojava")
728x90
반응형

+ Recent posts