Logo Wy Online Judge

WyOJ

IDSubmission IDProblemHackerOwnerResultSubmit timeJudge time
#50#210#1. 第二个 A + B ProblemquakesrypFailed.2025-04-18 18:48:522025-04-18 18:48:52

Details

Extra Test:

Accepted
time: 2ms
memory: 3128kb

input:

4 3

output:

7

result:

ok 1 number(s): "7"

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#210#1. 第二个 A + B Problemryp10016ms3556kbC++23137b2025-04-18 12:37:372025-04-19 16:15:25

answer

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

int main (void)
{
	int a, b;
	cin >> a >> b;
	cout << a + b << '\n';
	return 0;
}