diff --git a/Sum of 2 no.s b/Sum of 2 no.s new file mode 100644 index 0000000..7bdcae5 --- /dev/null +++ b/Sum of 2 no.s @@ -0,0 +1,11 @@ +#include +int main() +{ + int a,b,sum; + printf("\n Enter 2 no.s "); + scanf("%d%d".&a,&b); + sum=a+b; + printf("Sum is %d",sum); + return (0); +} +