# include <stdio.h>
main ()
{
int a,b,c;
printf("Enter the First Number=");
scanf("%d",&a);
printf("Enter the Second Number=");
scanf("%d",&b);
c=a+b;
printf("Sum of Two Number=%d",c);
getchar();
}
No comments
If you have any doubt, please let me know that with your valuable comments.
No comments
If you have any doubt, please let me know that with your valuable comments.