diff --git a/mshreeharsha_211CS137/FirstCode.c b/mshreeharsha_211CS137/FirstCode.c new file mode 100644 index 0000000..a1f634f --- /dev/null +++ b/mshreeharsha_211CS137/FirstCode.c @@ -0,0 +1,8 @@ +#include +int main(){ + int a,b,c; + printf("\nEnter the 2 Numbers : "); + scanf("%d%d",&a,&b); + c=a+b; + printf("Sum of 2 Numbers %d and %d is : %d",a,b,c); +} \ No newline at end of file