Logo Wy Online Judge

WyOJ

IDSubmission IDProblemHackerOwnerResultSubmit timeJudge time
#26#122#1. 第二个 A + B ProblemXiaohaoyu7c03rypSuccess!2025-04-18 07:36:212025-04-18 07:36:22

Details

Extra Test:

Wrong Answer
time: 3ms
memory: 3348kb

input:

22223 1

output:

Fuck
22224

result:

wrong output format Expected integer, but "Fuck" found

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#122#1. 第二个 A + B Problemryp9721ms3544kbC++14189b2025-04-17 12:41:242025-04-19 16:15:06

answer

#include <iostream>
#include <unistd.h>
using namespace std;

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