diff --git a/C++/day01.cpp b/C++/day01.cpp new file mode 100644 index 0000000..842e419 --- /dev/null +++ b/C++/day01.cpp @@ -0,0 +1,16 @@ +#include + +using namespace std; + +int main() { + string inputString; // declare a variable to hold our input + getline(cin, inputString); // get a line of input from cin and save it to our variable + + // Your first line of output goes here + cout << "Hello, World." << endl; + + // Write the second line of output + cout << inputString << endl; + + return 0; +}