比赛 20130225(初二) 评测结果 AAAAA
题目名称 BPlusA 最终得分 100
用户昵称 Satoshi 运行时间 0.002 s
代码语言 C++ 内存使用 3.15 MiB
提交时间 2013-02-25 20:55:29
显示代码纯文本
#include <fstream>
using namespace std;
int main()
{
	int n;
	ifstream in("bplusa.in");
	ofstream out("bplusa.out");
	in>>n;
    out<<n<<' '<<0;
	in.close();
	out.close();
	return 0;
}