#include<iostream.h> #include<conio.h> void main(){ clrscr(); int a,b; cout<<"enter first number="; cin>>a; cout<<"enter second number="; cin>>b; if(a>b) cout<<"first number is greater"; else cout<<"second number is greater"; getch(); }