| 记录编号 | 201460 | 评测结果 | AWAWWAAAAAAAWAAWWWWAWWAWAWAAWWWAAWAWWWWWAAWWWWWAAW | ||
|---|---|---|---|---|---|
| 题目名称 | 1.加法问题 | 最终得分 | 46 | ||
| 用户昵称 | 是否通过 | 未通过 | |||
| 代码语言 | C++ | 运行时间 | 0.020 s | ||
| 提交时间 | 2015-10-30 19:33:58 | 内存使用 | 4.40 MiB | ||
#include <stdio.h>
int main()
{
freopen("aplusb.in","r",stdin);
freopen("aplusb.out","w",stdout);
double a, b;
scanf("%lf %lf", &a, &b);
int c = a+b;
printf("%d\n", c);
return 0;
}