Problem2861--简单判断

2861: 简单判断

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

读入三个整数a、b、c( 0 < a,b,c < 10000 ),数据之间用空格隔开,如果前两个数a、b的和大于第三个数c,那么就输出“yes”,否则就输出“no”。

Input

一行,三个整数a b c

Output

yes or no

Sample Input Copy

5 6 7

Sample Output Copy

yes

Source/Category