A program that read two integer & display Multiply in C++.

#include<stdio.h>
#include<conio.h>
#include<iostream.h>

void main()
{
    int x,y,s;
    clrscr();
    cout<<"Enter first number : ";
    cin>>x;
   
    cout<<"\nEnter second number : ";
    cin>>y;

    s=x*y;
   
    cout<<"\nMultiply = "<<s;
    getch();
}



////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........