#include <stdio.
h>
int main() {
int a = 10;
int b = 20;
// Equal to
if (a == b) {
printf("a is equal to b\n");
} else {
printf("a is not equal to b\n"); // Output: a is not equal to b
}
// Not equal to
if (a != b) {
printf("a is not equal to b\n"); // Output: a is not equal to b
}
// Greater than
if (a > b) {
printf("a is greater than b\n");
} else {
printf("a is not greater than b\n"); // Output: a is not greater than b
}
// Less than
if (a < b) {
printf("a is less than b\n"); // Output: a is less than b
}
// Greater than or equal to
if (a >= b) {
printf("a is greater than or equal to b\n");
} else {
printf("a is not greater than or equal to b\n"); // Output: a is not
greater than or equal to b
}
// Less than or equal to
if (a <= b) {
printf("a is less than or equal to b\n"); // Output: a is less than or
equal to b
}
return 0;
}