| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 129909 | 鄢晨曦 | 02简单两数相加 | C++ | Wrong Answer | 1 MS | 272 KB | 139 | 2025-09-06 17:37:03 |
#include<bits/stdc++.h> using namespace std; int main(){ int x,y; x=1; y=2; cin>>x>>y; cout<<"x+y"<<endl; return 0; }
------Input------
963 11
------Answer-----
974
------Your output-----
x+y