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 "<