| 记录编号 | 422113 | 评测结果 | WWWWWWWWWWWWWWWWWWWWWWAWWWWWWWWWWWWWWWWWWWWWWWWWWW | ||
|---|---|---|---|---|---|
| 题目名称 | 1.加法问题 | 最终得分 | 2 | ||
| 用户昵称 | 是否通过 | 未通过 | |||
| 代码语言 | C++ | 运行时间 | 0.037 s | ||
| 提交时间 | 2017-07-08 21:45:36 | 内存使用 | 13.66 MiB | ||
#include<iostream>
#include<cstdio>
using namespace std;
int a,b,c;
int main(){
	freopen("aplusb.in","r",stdin);
	freopen("aplusb.out","w",stdout);
	cin>>a>>b;
	cout<<a+b; 
	fclose(stdin);
	fclose(stdout);
	return 0;
}