From b9d64884ca98e4d2b14ed96ecdeb5ee6ddb58879 Mon Sep 17 00:00:00 2001 From: tomthomasvempala <54186859+tomthomasvempala@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:57:59 +0530 Subject: [PATCH] addition operation --- Addition.cpp | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Addition.cpp diff --git a/Addition.cpp b/Addition.cpp new file mode 100644 index 0000000..1f02e3e --- /dev/null +++ b/Addition.cpp @@ -0,0 +1,4 @@ +int add(int a,int b) + { + return a+b; + }