Advertisement
sentique

Untitled

Oct 31st, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. a, b, c ,d = map(int, input().split(' '))
  2. if ((a+b+c)>d) and ((a+b+d)>c) and ((a+c+d)>b) and ((b+c+d)>a):
  3.     print('Yes')
  4. else:
  5.     print('No')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement