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

[백준/파이썬] 32978번 아 맞다 마늘

by 현장 2024. 12. 31.

-Code

n = int(input())
total = list(input().split())
use = list(input().split())

for el in total:
    if el not in use:
        print(el)
        break