From 0279449d1e78a1fa79a46411bb847a65d78c0a6b Mon Sep 17 00:00:00 2001 From: Vamsi Krishna <33099230+V-V-K@users.noreply.github.com> Date: Mon, 1 Oct 2018 19:49:43 +0530 Subject: [PATCH] Create Sum of Two numbers --- Sum of Two numbers | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Sum of Two numbers diff --git a/Sum of Two numbers b/Sum of Two numbers new file mode 100644 index 0000000..f82e5fd --- /dev/null +++ b/Sum of Two numbers @@ -0,0 +1,9 @@ +#include +using namespace std; +int main() +{ + int a=5, b=10, c; //change values of a and b for different results + c=a+b; + cout<<"The sum of "<