| 比赛 | 假期找点事儿做题吧 | 评测结果 | AAAAAA |
|---|---|---|---|
| 题目名称 | 加法问题 | 最终得分 | 100 |
| 用户昵称 | Hyoi_ctime | 运行时间 | 0.002 s |
| 代码语言 | C++ | 内存使用 | 0.31 MiB |
| 提交时间 | 2017-06-09 20:57:57 | ||
#include<iostream>
#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);
printf("%.lf",a+b);
return 0;
}