if(a>=b) { cout<<“a is greater than or equal to b”; } if(a==b) { cout<<”a is equal to b”; } if(a!=b) { cout<<”a is not equal to b”); } }