记录编号 439333 评测结果 AWAWAAWWAW
题目名称 加法问题 最终得分 50
用户昵称 GravatarAAAAAAAAAA 是否通过 未通过
代码语言 C++ 运行时间 0.000 s
提交时间 2017-08-19 21:37:14 内存使用 0.00 MiB
显示代码纯文本
#include<iostream>
#include<fstream>
#include<iomanip>
#define eps 1e-10
using namespace std;
int main(){
	freopen("aplusb.in","r",stdin);
	freopen("aplusb.out","w",stdout);
	double a,b,c;
	scanf("%lf%lf",&a,&b);
	c=a+b;
	printf("%d",int(c+eps));
	return 0;
}