1242: 简单判断

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:21 Solved:12

Description

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

Input

一行,三个整数 a b c 。

Output

yes or no 。

Sample Input Copy

5 6 7

Sample Output Copy

yes

HINT

一行输入3个整数变量:

a,b,c=map(int,input().split())