From aa093eb81b485daa050a00a98e7ad938340df832 Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Sat, 2 Jan 2021 23:47:30 +0800 Subject: [PATCH] =?UTF-8?q?#3.=20=E5=A4=8D=E8=AF=BB=E6=9C=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://loj.ac/s/963696 --- LibreOJ/3/3.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 LibreOJ/3/3.cpp 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