feat: complex result
This commit is contained in:
parent
775aa71c37
commit
0491b42ee8
9
a.cc
9
a.cc
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
|
|
@ -1 +0,0 @@
|
|||
|
Loading…
Reference in New Issue
Block a user