#include<bits/stdc++.h>
using namespace std;
int main()
{
freopen("a_in.txt","r",stdin);
freopen("a_out.txt","w",stdout);
int x;
while(cin >> x)
cout << x;
return 0;
}
头文件(C++11)、从文件输入输出
最新推荐文章于 2024-10-05 21:07:18 发布