/* To find the addition of two integers */ main () { int a,b,sum; clrscr (); printf ("\n Enter the two numbers"); scanf ("%d%d",&a,&b); sum=a+b; printf ("the addition is %d",sum); }