fork download
  1. a=int(input())
  2. b=int(input())
  3. c=int(input())
  4. if a>b and a>c:
  5. p=a
  6. a=c
  7. c=p
  8. else:
  9. if b>c:
  10. p=b
  11. b=c
  12. c=p
  13. if a+b>c:
  14. print ("tak")
  15. else:
  16. print ("nie")
Success #stdin #stdout 0.02s 7332KB
stdin
19
2
3
stdout
nie