diff --git a/LibreOJ/3/3.cpp b/LibreOJ/3/3.cpp new file mode 100644 index 00000000..416eee7f --- /dev/null +++ b/LibreOJ/3/3.cpp @@ -0,0 +1,16 @@ +#include + +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; +} \ No newline at end of file