A program that read two numbers & display minimum (2).

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

void main()
{   
    int x,y,m;
    clrscr();
    cout<<"Enter 1st number = ";
    cin>>x;
    cout<<"Enter 2nd number = ";
    cin>>y;

    if(x<y)
       m=x;
    else
       m=y;
       cout<<"Minimum number = "<<y;

    getch();
}



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