#include <iostream>
usingnamespace std;
int main()
{
int a = 1, b = 2, c = 3;
if(a < 1 && b == 2) {
cout << "a is less than 1 and b is equal to 2";
}
if(b > 1 && c !=3) {
cout << "b is greater than 1 and c does not equal 3";
}
if(a==1 && c < 5) {
cout << "a is equal to 1 and c is less than 5";
}
cin.get();
return 0;
}