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

[백준/파이썬] 31609번 現れている数字 (Appearing Numbers)

by 현장 2024. 3. 23.

-Code

input()
nums = sorted(set(list(map(int, input().split()))))

for n in list(nums):
    print(n)