Guest User

Untitled

a guest
May 26th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. while True:
  2. try:
  3. z = raw_input()
  4. y = z.split()
  5. a = float(y[0])
  6. b = float(y[1])
  7. c = float(y[2])
  8.  
  9. if a+b<=c or a+c<=b or b+c<=a:
  10. print 0
  11. else:
  12. print 1
  13.  
  14. except EOFError:
  15. break
Add Comment
Please, Sign In to add comment