用户输出
13379
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#89056 | #113. 送分 A + B | Accepted | 100 | 10 ms | 384 K | C++ / 101 B | 18064584180 | 2023-05-25 23:40:55 |
#include <stdio.h>
int main() {
int s, a, b;
scanf("%d %d", &a, &b);
s = a + b;
printf("%d", s);
}