mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 23:48:48 +00:00
parent
79362f9e76
commit
aa093eb81b
16
LibreOJ/3/3.cpp
Normal file
16
LibreOJ/3/3.cpp
Normal 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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user