比赛 cmath生日赛 评测结果 AAAAAA
题目名称 加法问题 最终得分 100
用户昵称 Hallmeow 运行时间 0.002 s
代码语言 C++ 内存使用 4.40 MiB
提交时间 2017-06-13 21:42:31
显示代码纯文本
#include <climits>
#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);
	int c=INT_MAX;
	printf("%d",int(a+b));
	return 0;
}