-
Three natural numbers a, b, c are given on separate lines. Determine whether a non-degenerate triangle with such sides exists.
If the triangle exists, output "YES", otherwise output "NO".
[{'input': '3\n4\n5', 'output': 'YES'}]