用户输出
13379
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#81210 | #113. 送分 A + B | Accepted | 100 | 11 ms | 384 K | C++ 11 / 405 B | Corycle | 2022-08-26 13:55:06 |
/*====Corycle====*/
#include <bits/stdc++.h>
#define ll long long
using namespace std;
const int inf = 0x3f3f3f3f;
int read() {
int s = 0, f = 1;
char c = getchar();
while (c < '0' || c > '9') {
if (c == '-')
f = -1;
c = getchar();
}
while (c >= '0' && c <= '9') {
s = s * 10 + c - '0';
c = getchar();
}
return s * f;
}
int main() {
// freopen("_.in","r",stdin);
// freopen("_.out","w",stdout);
printf("%d\n", read() + read());
return 0;
}