UOJ Logo

NOI.AC

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#170378#1227. 计算两个数的和luojianwei22161001ms1196kbC++129b2023-04-15 20:04:592023-04-15 20:05:00

answer

#include <bits/stdc++.h>
using namespace std;

int main() {
	long long a, b;
	cin >> a >> b;
	cout << a + b;
	return 0;
}

Details

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

Test #1:

score: 33
Accepted
time: 1ms
memory: 1196kb

input:

1 2

output:

3

result:

ok single line: '3'

Test #2:

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

input:

3 6

output:

9

result:

ok single line: '9'

Test #3:

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

input:

6 9

output:

15

result:

ok single line: '15'