cf 697 A

                  

链接:http://codeforces.com/problemset/problem/697/A


#include 
using namespace std;

int main()
{
    int n,m,k;
    scanf("%d%d%d",&n,&m,&k);
    if(k=n+m)
            printf("YES\n");
        else
            printf("NO\n");
    }
    
    return 0;
}


你可能感兴趣的:(水题,cf)