a = map(int,input().split(' '))
if sum(a)/3 >=60:
    print('NO')
else:
    print('YES')