记录编号 172118 评测结果 AWAWWAAAAAAAWAAWWWWAWWAWAWAAWWWAAWAWWWWWAAWWWWWAAW
题目名称 加法问题 最终得分 46
用户昵称 Gravatarherobrine 是否通过 未通过
代码语言 C++ 运行时间 0.025 s
提交时间 2015-07-22 15:55:44 内存使用 13.66 MiB
显示代码纯文本
#include <iostream>
#include <stdio.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
	freopen("aplusb.in","r",stdin);
	freopen("aplusb.out","w",stdout);
	double a,b;
	int res;
	cin>>a>>b;
	res = a+b;
	cout<<(res)<<endl;
	return 0;
}