记录编号 | 177398 | 评测结果 | AAAAA | ||
---|---|---|---|---|---|
题目名称 | BPlusA | 最终得分 | 100 | ||
用户昵称 | 琴殇''遙暩焱鐄 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.013 s | ||
提交时间 | 2015-08-11 20:56:41 | 内存使用 | 2.62 MiB | ||
#include <algorithm> #include <fstream> #include <cstdlib> #include <cstdio> #include <cmath> #define MAXN 105 using namespace std; ifstream cin ("bplusa.in"); ofstream cout ("bplusa.out"); long long n; int main () { cin >> n; cout << n << ' ' << 0 << endl; return 0; }