#include <iostream>
usingnamespace std;
int main()
{
int a;
cout <<"enter number"<<endl;
cin>>a;
int b;
cout<<"enter second number"<<endl;
cin>>b;
if ( b<a){
cout<<"here is the lowest number "<< b <<endl;;
}else {
if( a<b){
cout<<"here is the lowest number "<<a<<endl;
}
}
}