Program to Print addition of two numbers


#include<stdio.h>
#include<conio.h>
void main()
{
int a, b, result;
clrscr() ;
printf("Enter any two numbers");
scanf("%d%d",&a,&b);
result=a+b;
printf("\nthe addition of the numbers is %d", result);
getch();