diff --git a/DSA/sum of two integers.cp b/DSA/sum of two integers.cp index 00ff611..a06dcb0 100644 --- a/DSA/sum of two integers.cp +++ b/DSA/sum of two integers.cp @@ -10,8 +10,11 @@ using namespace std; int main() { - //write code here - - + int a,b; + int sum; + printf("Enter the value of a and b"); + /nscanf("%d %d ", &a&b); + sum=a+b; + printf("Sum =%d",sum); return 0; }