#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("\n----------------PRINT SUM OF NUMBERS----------------");
printf("\nEnter any two numbers:");
scanf("%d %d", &a, &b);
c = a + b;
printf("\nThe addition of two number is: %d", c);
getch();
}
No comments:
Post a Comment