Score : 300 points
Problem Statement
Does a+b<c hold?
Constraints
- 1≤a,b,c≤109
- All values in input are integers.
Input is given from Standard Input in the following format:
a b c
Output
If a+b<c, print Yes
; otherwise, print No
.
2 3 9
No
2+3<9 does not hold.
2 3 10
Yes
2+3<10 holds.