diff --git a/add.cpp b/add.cpp new file mode 100644 index 0000000..07e99e1 --- /dev/null +++ b/add.cpp @@ -0,0 +1,12 @@ +#include +#include + +main() +{ + int a,b,add=0; + printf("\n Enter the value of a and b:"); + scanf("%d%d",&a,&b); + add=a+b; + printf("\n The addition of a and b is:%d",add); + +} diff --git a/add.exe b/add.exe new file mode 100644 index 0000000..3d39dbb Binary files /dev/null and b/add.exe differ