#477. A+B文件操作

A+B文件操作

题目描述:

a+b problem

file_name:aplusb

#include<bits/stdc++.h>
using namespace std;
int main(){
	freopen("aplusb.in","r",stdin);
	freopen("aplusb.out","w",stdout);
	int a,b;
	cin>>a>>b;
	cout<<a+b<<endl;
}

输入格式:

a b

输出格式:

a+b

样例:

123 500
623

提示

打开题目-评测设置-修改FileIO处名字