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