记录编号 361759 评测结果 AWAWWAAAAAAAWAAWWWWAWWAWAWAAWWWAAWAWWWWWAAWWWWWAAW
题目名称 加法问题 最终得分 46
用户昵称 Gravatar不需要黄桃 是否通过 未通过
代码语言 C++ 运行时间 0.024 s
提交时间 2017-01-04 21:58:34 内存使用 13.66 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
	freopen("aplusb.in","r",stdin);
	freopen("aplusb.out","w",stdout);
	double a,b;
	cin>>a>>b;
	cout<<int(a+b);
	return 0;
}