#include<iostream.h> #include<conio.h> main( ) { clrscr( ); int num_1; int num_2; cout<<\"\\n Enter the value of num_1 = \"; cin>>num_1; cout<<\"\\n Enter the value of num_2 = \"; cin>>num_2; cout<<\"\\n Sum = \"<<num_1<<\"+\"<<num_2<<\" = \"<<num_1+num_2<<endl; getch( ); return 0; }