#include<stdio.h>
#include<conio.h>
main()
{
int a,b,sum;
printf("enter two number");
scanf("%d",&a,&b);
sum=a+b;
printf("addtion of number is %d",sum);
getch();
}
#include<conio.h>
main()
{
int a,b,sum;
printf("enter two number");
scanf("%d",&a,&b);
sum=a+b;
printf("addtion of number is %d",sum);
getch();
}
Comments
Post a Comment