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