C Language
#include<stdio.h> #include<conio.h> main() { int a, b, c; clrscr(); printf("Enter two numbers"); scanf("%d%d", &a, &b); c=a+b; printf ("sum=%d",c); getch(); } /*OUTPUT*/ Enter two numbers 2 9 Sum=11