include[HTML_REMOVED] include[HTML_REMOVED] include[HTML_REMOVED] using namespace std;
int main(){ double a, b, c; cin >> a >> b >> c; double avg = (a + b + c) / 3; if(avg > 60) printf(“YES”); else printf(“NO”); }