0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:25:24 +00:00
Baoshuo Ren 2022-05-09 19:17:10 +08:00
parent 9e8c61ff42
commit 0f16821fad
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

24
AcWing/813/813.cpp Normal file
View File

@ -0,0 +1,24 @@
#include <iostream>
#include <string>
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;
}