2025-06-17 16:33:35 +09:00

7 lines
97 B
Python

x=0
y=0
for _ in range(3) :
a, b = map(int, input().split())
x ^= a
y ^= b
print(x,y)