UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#194772#1227. 计算两个数的和yzgl1000ms1248kbC++141b2023-10-17 19:36:422023-10-17 19:36:44

answer

#include<bits/stdc++.h>
using namespace std;
int main(){
	ios::sync_with_stdio(false);
	int a,b;
	cin>>a>>b;
	cout<<a+b;
	return 0;
}

详细

小提示:点击横条可展开更详细的信息

Test #1:

score: 33
Accepted
time: 0ms
memory: 1244kb

input:

1 2

output:

3

result:

ok single line: '3'

Test #2:

score: 33
Accepted
time: 0ms
memory: 1248kb

input:

3 6

output:

9

result:

ok single line: '9'

Test #3:

score: 33
Accepted
time: 0ms
memory: 1248kb

input:

6 9

output:

15

result:

ok single line: '15'