#include /*This program adds two integers*/ main() { int a,b; clrscr(); printf("Enter any two numbers to be added: \n"); scanf("%d %d",&a,&b); printf("\nThe sum of the nos. is %d",a+b); }