Advertisement
vadim_sharaf

Untitled

Sep 21st, 2021
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. x  = sorted(map(int, input().split()))
  2. if x[0] + x[1] > x[-1]:
  3.     print('YES')
  4. else: print('NO')
  5.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement