)
cout
endl;if( num1 != num2 )
cout<< num1 << " is not equal to "<< num2 << endl;
if( num1 < num2 )
cout<< num1 << " is less than "<< num2 << endl;
if( num1 > num2 )
cout<< num1 << " is greater than "<< num2 << endl;
if( num1 <= num2 )
cout<< num1 << " is less than or equal to "<< num2 << endl;
if( num1 >= num2 )
cout<< num1 <<" is greater than or equal to "<< num2 << endl;
return 0;
}
If(Условия) {
Действия}
else {
дефолтовое
}