Advertisement
pankovamg

socks

Dec 13th, 2022
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.49 KB | None | 0 0
  1. a = int(input())
  2. b = int(input())
  3. c = int(input())
  4. d = int(input())
  5. ans = []
  6. if a != 0 and b != 0 and c!= 0 and d != 0:
  7.     ans = [[max(a, b) + 1, 1], [1, max(c, d) + 1]]
  8.  
  9. if a == 0:
  10.     ans.append([1, c+1])
  11. elif b == 0:
  12.     ans.append([1, d+1])
  13. elif c == 0:
  14.     ans.append([a+1, 1])
  15. elif d == 0:
  16.     ans.append([b+1, 1])
  17. elif a < b or c < d:
  18.     ans.append([a+1, c+1])
  19. elif b < a or d < c:
  20.     ans.append([b+1, d+1])
  21.  
  22.    
  23. x, y = min(ans, key = lambda z: z[0] + z[1])
  24. print(x, y)
Tags: olymp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement