QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#487313 | #6103. A+B Problem | hhw | WA | 0ms | 3948kb | C++23 | 143b | 2024-07-22 20:07:18 | 2024-07-22 20:07:18 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
long long a,b;
int main()
{
scanf("%lld%lld",&a,&b);
printf("%lld",a+b);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3948kb
input:
4 1 1 1
output:
5
result:
wrong output format Unexpected end of file - int32 expected