Advertisement
dream_4ild

9-И-2 ex.7

Dec 10th, 2020
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Sat Nov 21 20:14:32 2020
  4.  
  5. @author: Sergey
  6. """
  7.  
  8. data=list(map(int, input().split()))
  9. a=max(data)
  10. b=min(data)
  11. c=8*a+b
  12. c1=8*b+a
  13. s=0
  14. for elem in data:
  15.     s+= elem
  16. if s==c:
  17.     print(b)
  18. else:
  19.     print(a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement