You are on page 1of 1

main()

{
int a,b,c;
printf("enter any two numbers");
scanf("%d%d%d",&a,&b);
c=a+b;
printf("the addition of two numbers is %d",c);
}

You might also like