diff --git a/AcWing/765/765.cpp b/AcWing/765/765.cpp new file mode 100644 index 00000000..963af0f1 --- /dev/null +++ b/AcWing/765/765.cpp @@ -0,0 +1,13 @@ +#include + +using namespace std; + +int main() { + char c; + c = getchar(); + while (c != '\n') { + cout << c << ' '; + c = getchar(); + } + return 0; +}