From 84e7e81f18c1b188390c3bd31888b20fdc0923fc Mon Sep 17 00:00:00 2001 From: deepatharwani <44153137+deepatharwani@users.noreply.github.com> Date: Thu, 18 Oct 2018 16:15:00 +0530 Subject: [PATCH] Inserted few lines --- GettingStarted/sumTwoNumbers.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/GettingStarted/sumTwoNumbers.cpp b/GettingStarted/sumTwoNumbers.cpp index 902aaae..9e1fb4c 100644 --- a/GettingStarted/sumTwoNumbers.cpp +++ b/GettingStarted/sumTwoNumbers.cpp @@ -9,6 +9,7 @@ - single line comments can be inserted after // (two back-slashes). */ + #include /* @@ -16,6 +17,7 @@ instead of everytime using std::cin and std::cout, we directly use the namespace std in the whole program. */ + using namespace std; // every C++ program has a main FUNCTION which gets executed when we execute the program. @@ -27,6 +29,7 @@ using namespace std; function body; } */ + int main(){ /* @@ -103,4 +106,4 @@ int main(){ The sum of the given numbers is: 11 Thank you. See you in the next program! -*/ \ No newline at end of file +*/