Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. a = int(input())
  2. b = int(input())
  3. c = int(input())
  4. if (a+b>c) and (b+c>a) and (a+c>b):
  5. print('существует')
  6. else:
  7. print('не существует')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement