← Back to List

10599번: 페르시아의 왕들 ↗

Solutions

Python 3
103 B | 103 chars
while True:
    a,b,c,d=map(int,input().split())
    if a==b==c==d==0:
        break
    print(c-b,d-a)