1036: 【入门】简单判断

Memory Limit:16 MB Time Limit:1.000 S
Creator:
Submit:10 Solved:9

Description

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

Input

一行,三个整数a b c

Output

yes or no

Sample Input

5 6 7

Sample Output

yes