比赛 假期找点事儿做题吧 评测结果 AAAAAA
题目名称 加法问题 最终得分 100
用户昵称 皓芷 运行时间 0.002 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-06-09 18:09:48
显示代码纯文本
#include<iostream>
#include<cstdio>
#define mysister
#define maxn
using namespace std;
double a,b;
int main()
{
	freopen("aplusb.in","r",stdin);
	freopen("aplusb.out","w",stdout);
	scanf("%lf%lf",&a,&b);
	printf("%.0lf",a+b);
	return 0;
}