From 1fdc3c1c9996e66f05008b64498f38627cce30a0 Mon Sep 17 00:00:00 2001 From: yirrilo Date: Sat, 6 Oct 2018 12:42:16 +0200 Subject: [PATCH] fixes for issue Kvaibhav01/HackerEarth-Solutions#2 for Sum Of Two --- Online Programming/Sum of two/README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Online Programming/Sum of two/README.md diff --git a/Online Programming/Sum of two/README.md b/Online Programming/Sum of two/README.md new file mode 100644 index 0000000..313e9f9 --- /dev/null +++ b/Online Programming/Sum of two/README.md @@ -0,0 +1,17 @@ +# ARRAY SUM OF SIZE N + +## This is a solution to HackerEarth problem. Following steps are followed: + +- First, we take a space separated list of two integer. + +- Then, set both of them into distinct variables. + +- We Declare the sum and initalize it to zero. + +- The sum is then calculated. + +- Lastly, the variable sum which contains the final answer is printed as the output. + +### Find the link to the problem statement here: https://www.hackerearth.com/fr/practice-onboarding/sum-of-two-1 + +## #HAPPYCODING ;)