| 记录编号 | 149326 | 评测结果 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 1.加法问题 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.025 s | ||
| 提交时间 | 2015-02-23 11:36:53 | 内存使用 | 13.66 MiB | ||
#include<iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;
int main()
{
freopen("aplusb.in","r",stdin);
freopen("aplusb.out","w",stdout);
float i,j;
cin>>i>>j;
printf("%.0f",i+j);
fclose(stdin);
fclose(stdout);
return 0;
}