728x90
반응형
단순 구현 문제이다.
while 1:
a, b, c, d = map(int, input().split())
if a == b == c == d == 0:
break
print(c-b, d-a)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1246번 온라인 판매(python) (0) | 2021.02.24 |
---|---|
백준 알고리즘 10698번 Ahmed Aly(python) (0) | 2021.02.23 |
백준 알고리즘 9950번 Rectangles(python) (0) | 2021.02.23 |
백준 알고리즘 9945번 Centroid of Point Masses(python) (0) | 2021.02.23 |
백준 알고리즘 9848번 Gift(python) (0) | 2021.02.23 |