ID | Submission ID | Problem | Hacker | Owner | Result | Submit time | Judge time |
---|---|---|---|---|---|---|---|
#50 | #210 | #1. 第二个 A + B Problem | quakes | ryp | Failed. | 2025-04-18 18:48:52 | 2025-04-18 18:48:52 |
Details
Extra Test:
Accepted
time: 2ms
memory: 3128kb
input:
4 3
output:
7
result:
ok 1 number(s): "7"
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#210 | #1. 第二个 A + B Problem | ryp | 100 | 16ms | 3556kb | C++23 | 137b | 2025-04-18 12:37:37 | 2025-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;
}