feat: complex result

This commit is contained in:
zzjc1234 2024-09-10 17:47:15 +08:00
parent 775aa71c37
commit 0491b42ee8
3 changed files with 7 additions and 4 deletions

9
a.cc
View File

@ -1,8 +1,13 @@
#include <iostream>
#include <string>
int main(int argc, char *argv[]) {
std::string str;
std::cin >> str;
std::string str, line;
while (std::getline(std::cin, line)) {
str += line + "\n";
}
std::cout << str;
return 0;
}

View File

@ -1 +0,0 @@

View File

@ -1 +0,0 @@