0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 23:48:48 +00:00

#3. 复读机

https://loj.ac/s/963696
This commit is contained in:
Baoshuo Ren 2021-01-02 23:47:30 +08:00 committed by Baoshuo Ren
parent 79362f9e76
commit aa093eb81b
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

16
LibreOJ/3/3.cpp Normal file
View File

@ -0,0 +1,16 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
freopen("copycat.in", "r", stdin);
freopen("copycat.out", "w", stdout);
int t;
string s;
cin >> t;
while (t--) {
cin >> s;
cout << s << endl;
}
return 0;
}