We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1b31283 + 421c009 commit b617fcdCopy full SHA for b617fcd
Day0-HelloWorld/C++/main_kunal.cpp
@@ -0,0 +1,11 @@
1
+#include <iostream>
2
+
3
+using namespace std;
4
5
+int main() {
6
+ string input_string;
7
+ getline(cin, input_string);
8
+ cout << "Hello, World." << endl;
9
+ cout << input_string;
10
+ return 0;
11
+}
0 commit comments