#include <stdio.h> int main() { int a,b,c,av; scanf("%d %d %d",&a,&b,&c); av=(a+b+c)/3; if(av>=60) printf("NO"); else printf("YES"); return 0; }