ID | 提交记录ID | 题目 | Hacker | Owner | 结果 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|
#52 | #97 | #1. 第二个 A + B Problem | quakes | ryp | Failed. | 2025-04-18 18:51:25 | 2025-04-18 18:51:26 |
详细
Extra Test:
Invalid Input
input:
abc def
output:
result:
FAIL Expected integer, but "abc" found (stdin)
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#97 | #1. 第二个 A + B Problem | ryp | 100 | 19ms | 3548kb | C++23 | 135b | 2025-04-16 18:28:18 | 2025-04-19 16:14:59 |
answer
#include <iostream>
using namespace std;
int main (void)
{
int a, b;
cin >> a >> b;
cout << a + b << '\n';
return 0;
}