-->
当前位置:首页 > 题库

PROGRAMMING:Can triangle 1 be formed

Luz5年前 (2021-05-10)题库370
Input the three sides of the triangle to judge whether it can form a triangle. If it can output yes, otherwise it will output No.
###Input format:
Input three integers directly in one line, with a space interval between the three integers, without any additional characters.
###Output format:
Output yes or no directly without any additional characters.
###Input example:
```in
4 5 6
```
###Output example:
```out
YES
```
###Input example:
```
2 2 4
```
###Output example:
```
NO
```






answer:If there is no answer, please comment