프로그래밍 언어 활용난도 중
8번 · 주관식 · 5점
다음 Python 코드에 HumanDev를 입력했을 때의 출력값을 쓰시오.
source = input()
joined = "".join(source.split())
blocked = set("ong")
result = []
for ch in reversed(joined):
if ch not in blocked:
result.append(ch)
print("".join(result))