ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#96 | #1. 第二个 A + B Problem | ryp | Compile Error | / | / | C++11 | 135b | 2025-04-16 18:21:50 | 2025-04-16 20:37:00 |
answer
#include <iostream>
using namespace std;
int main (void)
{
int a, b;
cin >> a >> b;
cout << a + b << '\n';
return 0;
}
详细
This language is not supported yet.