ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 3009 |
문제명 | 네 번째 점 |
레벨 | 브론즈 3 |
분류 |
기초 |
시간복잡도 | O(1) |
사용한 언어 | Python |
제출기록 | 29200KB / 72ms |
최고기록 | 52ms |
해결날짜 | 2021/09/25 |
"""Solution code for "BOJ 3009. 네 번째 점".
- Problem link: https://www.acmicpc.net/problem/3009
- Solution link: http://www.teferi.net/ps/problems/boj/3009
Tags: [Xor]
"""
def main():
x1, y1 = [int(x) for x in input().split()]
x2, y2 = [int(x) for x in input().split()]
x3, y3 = [int(x) for x in input().split()]
print(x1 ^ x2 ^ x3, y1 ^ y2 ^ y3)
if __name__ == '__main__':
main()