Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. a = int(input())
  2. b = int(input())
  3. c = int(input())
  4. if a + c > b and a + b > c and c + b > a:
  5.     print("yes")
  6. else:
  7.     print("no")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement