diff --git a/Addition.cpp b/Addition.cpp new file mode 100644 index 0000000..59202ab --- /dev/null +++ b/Addition.cpp @@ -0,0 +1,13 @@ +//ADDITION OF TWO NUMBERS + + +#include +int main() +{ + int first,second,add; //declaring variables + printf("Enter two numbers"); + scanf("%d %d",&first,&second); //taking two input + add=first+second; //adding first and second + printf(" Addition of two numbers %d",add); + return 0; +}