From d7dc843f78d40b0d43fae534e7b4dc0514efd001 Mon Sep 17 00:00:00 2001 From: Swathikaaa <73743131+Swathikaaa@users.noreply.github.com> Date: Sat, 31 Oct 2020 18:48:35 +0530 Subject: [PATCH] Create Sum of 2 no.s --- Sum of 2 no.s | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Sum of 2 no.s 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); +} +