| 记录编号 | 42684 | 评测结果 | AWAWWAAAAAAAWAAWWWWAWWAWAWAAWWWAAWAWWWWWAAWWWWWAAW | ||
|---|---|---|---|---|---|
| 题目名称 | 1.加法问题 | 最终得分 | 46 | ||
| 用户昵称 | 是否通过 | 未通过 | |||
| 代码语言 | C++ | 运行时间 | 0.020 s | ||
| 提交时间 | 2012-09-28 07:39:38 | 内存使用 | 4.40 MiB | ||
#include <climits>
#include <cstdio>
using namespace std;
int main()
{
freopen("aplusb.in","r",stdin);
freopen("aplusb.out","w",stdout);
double a,b;
scanf("%lf %lf",&a,&b);
int c=INT_MAX;
printf("%d",int(a+b));
return 0;
}