1023: 【入门】简单判断

Memory Limit:16 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:3 Solved:3

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