Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94525 张德皓 2020 C++ Wrong Answer 1 MS 272 KB 216 2024-10-23 21:39:54

Tests(0/3):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; if(a+b==c+d){ cout<<"yes"; } else{ cout<<"no"; } return 0; }


Run Info:

------Input------
2121
------Answer-----
YES
------Your output-----
no