Skip to content

Commit b617fcd

Browse files
authored
Merge pull request #1 from kunalvishnoi/day-0
cpp add for day-0
2 parents 1b31283 + 421c009 commit b617fcd

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Day0-HelloWorld/C++/main_kunal.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)