From 0f16821fad07f1c3ad01669e059feadf3b6a1f08 Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Mon, 9 May 2022 19:17:10 +0800 Subject: [PATCH] =?UTF-8?q?813.=20=E6=89=93=E5=8D=B0=E7=9F=A9=E9=98=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://www.acwing.com/problem/content/submission/code_detail/14063881/ --- AcWing/813/813.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 AcWing/813/813.cpp diff --git a/AcWing/813/813.cpp b/AcWing/813/813.cpp new file mode 100644 index 00000000..b0628eb6 --- /dev/null +++ b/AcWing/813/813.cpp @@ -0,0 +1,24 @@ +#include +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +int n, m; +std::string s; + +int main() { + std::ios::sync_with_stdio(false); + + cin >> n >> m; + + std::getline(cin, s); + + while (n--) { + std::getline(cin, s); + cout << s << endl; + } + + return 0; +}