ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#151648 | #1227. 计算两个数的和 | yangzibin | 100 | 0ms | 1200kb | C++ | 115b | 2022-07-28 14:02:09 | 2022-07-28 14:02:10 |
answer
#include<iostream>
using namespace std;
int a,b,c;
int main()
{
cin>>a>>b;
c=a+b;
cout<<c;
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 33
Accepted
time: 0ms
memory: 1196kb
input:
1 2
output:
3
result:
ok single line: '3'
Test #2:
score: 33
Accepted
time: 0ms
memory: 1196kb
input:
3 6
output:
9
result:
ok single line: '9'
Test #3:
score: 33
Accepted
time: 0ms
memory: 1200kb
input:
6 9
output:
15
result:
ok single line: '15'