Is the Triangle Possible?

Problem Statement

-

Input

Three natural numbers a, b, c are given on separate lines. Determine whether a non-degenerate triangle with such sides exists.

Output

If the triangle exists, output "YES", otherwise output "NO".

Example

[{'input': '3\n4\n5', 'output': 'YES'}]