用户输出
13379
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#84328 | #113. 送分 A + B | Accepted | 100 | 8 ms | 264 K | C++ / 103 B | 是唯一指定菜菜飞舞捏 | 2023-04-10 23:58:00 |
#include <stdio.h>
int main() {
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a + b);
return 0;
}