Spadework 2020. 2. 10. 18:13

* Solved 기준 브론즈3 단순 풀이

while True:
	a,b,c,d = map(int, input().split())
	if (a,b,c,d)==(0,0,0,0): break
	print(c-b,d-a)