vadim_sharaf

Untitled

Sep 21st, 2021
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. s = list(map(int, input().split()))
  2. x = sorted(s[:3])
  3. y = sorted(s[3:])
  4. print(x[0]*y[0]+x[1]*y[1]+x[2]*y[2])
Advertisement
Add Comment
Please, Sign In to add comment