diff --git a/raman.c b/raman.c new file mode 100644 index 0000000..3a565e1 --- /dev/null +++ b/raman.c @@ -0,0 +1,10 @@ +#include +int main() +{ +int a,b,sum; +printf("enter the two no."); +scanf("%d%d",&a,&b); +sum=a+b; +printf("the sum of the two no. is %d",sum); +return 0; +} \ No newline at end of file