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

[백준/파이썬] 32515번 BB84

by 현장 2024. 11. 4.

-Code

n = int(input())
lines = [input() for _ in range(4)]
res = ""

for i in range(n):
    if lines[0][i] == lines[2][i]:
        if lines[1][i] == lines[3][i]:
            res += lines[1][i]
        else:
            print("htg!")
            exit()
print(res)