比赛 cmath生日赛 评测结果 AAAWWW
题目名称 加法问题 最终得分 50
用户昵称 xtyz_lyx 运行时间 0.003 s
代码语言 C++ 内存使用 13.66 MiB
提交时间 2017-06-13 23:30:54
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
	freopen("aplusb.in","r",stdin);
	freopen("aplusb.out","w",stdout);
	int a,b;
	cin>>a>>b;
	cout<<a+b;
}