0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 10:25:24 +00:00
OI-codes/AcWing/813/813.cpp

25 lines
320 B
C++

#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;
}