记录编号 110642 评测结果 AAAAA
题目名称 BPlusA 最终得分 100
用户昵称 Gravatarok 是否通过 通过
代码语言 C++ 运行时间 0.001 s
提交时间 2014-07-12 09:46:55 内存使用 0.31 MiB
显示代码纯文本
#include <fstream>
using namespace std;
int main()
{
	ifstream input("bplusa.in");
	ofstream output("bplusa.out");
	int n;
	input>>n;
	output<<'0'<<' '<<n<<endl;
	input.close();
	output.close();
	return 0;
}