OneCompiler

C program for sum of two numbers

1746
    //SUM OF TWO NUMBERS 

#include <stdio.h>
void main()
{
int a,b,sum;
printf("enter a,b values");
scanf("%d%d",&a,&b);
//formula
sum=a+b;
printf("sum=%d",sum);
}