Sunday 7 December 2014

C++ program to print two integers on console

#include<iostream.h>
#include<conio.h>
void main()
{
int num,num1 ;
clrscr();
cout<<"enter two numbers";
cin>>num>>num1;
cout<<"entered numbers are";
cout<<num<<"\t"<<num1;
getch();
}