| 记录编号 | 101292 | 评测结果 | AAAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 1299.BPlusA | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.001 s | ||
| 提交时间 | 2014-05-11 15:05:19 | 内存使用 | 0.29 MiB | ||
#include<cstdio>
using namespace std;
int n;
int main(){
FILE *fin, *fout;
fin = fopen("bplusa.in", "r");
fout = fopen("bplusa.out", "w");
fscanf(fin,"%d",&n);
fprintf(fout,"%d %d\n",0,n);
fclose(fin);
fclose(fout);
return 0;
}