记录编号 201460 评测结果 AWAWWAAAAAAAWAAWWWWAWWAWAWAAWWWAAWAWWWWWAAWWWWWAAW
题目名称 加法问题 最终得分 46
用户昵称 GravatarChenyao2333 是否通过 未通过
代码语言 C++ 运行时间 0.020 s
提交时间 2015-10-30 19:33:58 内存使用 4.40 MiB
显示代码纯文本
#include <stdio.h>
int main()
{
	freopen("aplusb.in","r",stdin);
	freopen("aplusb.out","w",stdout);
	
	double a, b;
	scanf("%lf %lf", &a, &b);
	int c = a+b;
	printf("%d\n", c);
	
	return 0;	
}