| 记录编号 | 224205 | 评测结果 | AAAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 1299.BPlusA | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.003 s | ||
| 提交时间 | 2016-02-15 21:15:55 | 内存使用 | 0.29 MiB | ||
#include<cstdio>
char c;
int main(){
freopen("bplusa.in","r",stdin);
freopen("bplusa.out","w",stdout);
while(c=getchar(),c!=EOF)putchar(c);
putchar(' ');
putchar('0');
fclose(stdin);fclose(stdout);
}