| 记录编号 | 352508 | 评测结果 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 1.加法问题 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.000 s | ||
| 提交时间 | 2016-11-17 11:37:38 | 内存使用 | 0.00 MiB | ||
#include<ctime>
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
inline int DDD()
{
freopen("aplusb.in","r",stdin);
freopen("aplusb.out","w",stdout);
double a,b;
cin>>a>>b;
printf("%.0lf",a+b);
return 0;
}
int aa=DDD();
int main(){;}