Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112950 | 康文远 | 02简单两数相加 | C++ | Wrong Answer | 1 MS | 272 KB | 120 | 2025-03-14 20:32:50 |
#include<bits/stdc++.h> using namespace std; int x,y; int main(){ cin>>x>>y; x = 10; y = 10; cout<<x+y; }
------Input------
963 11
------Answer-----
974
------Your output-----
20