#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a,b;
cout<<"Enter value of a:";
cin>>a;
cout<<"Enter value of b:";
cin>>b;
if(a<b)
cout<<"a is smaller than b";
else
cout<<"b is smaller than a";
getch();
}