#include<stdio.h>
#include<conio.h>
void main()
{
int num1,num2,sum;
printf("Enter any two numbers \n");
scanf("%d%d",&num1,&num2);
sum=num1+num2;
printf(“Sum of two numbers is : %d”,sum);
getch();
}
OUTPUT:
Enter any two numbers
42 65
Sum of two numbers is : 107
0 comments:
Post a Comment