| 记录编号 | 547481 | 评测结果 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 1.加法问题 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.027 s | ||
| 提交时间 | 2019-12-05 20:40:21 | 内存使用 | 13.66 MiB | ||
#include<bits/stdc++.h>
using namespace std;
int main()
{
freopen("aplusb.in","r",stdin);
freopen("aplusb.out","w",stdout);
double A,B;
cin>>A>>B;
cout<<setiosflags(ios::fixed)<<setprecision(0);
cout<<A+B<<endl;
return 0;
}