| 比赛 | cmath生日赛 | 评测结果 | AAAAAA |
|---|---|---|---|
| 题目名称 | 加法问题 | 最终得分 | 100 |
| 用户昵称 | xzcxzc11 | 运行时间 | 0.003 s |
| 代码语言 | C++ | 内存使用 | 13.66 MiB |
| 提交时间 | 2017-06-13 19:22:42 | ||
#include <iostream>
#include <cstdio>
#include <iomanip>
//#define DEBUG
using namespace std;
double a, b;
int main()
{
#ifndef DEBUG
freopen("aplusb.in", "r", stdin);
freopen("aplusb.out", "w", stdout);
#endif
cin >> a >> b;
cout << setiosflags(ios::fixed) << setprecision(0) << a + b << endl;
return 0;
}