TRICHECK


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 493M

Problem type

Comments


  • 0
    B2_Nguyen_Bach_Long_Nhat  commented on July 13, 2025, 7:29 a.m.

    include <bits/stdc++.h>

    using namespace std; long long a,b,c; int main () { cin>>a>>b>>c; if(a+b>c and a+c>b and c+b>a) cout<<"YES"; else cout<<"NO"; return 0; }