#include <stdio.h>
int main() {
int x = 5, y = 10, z = 15;
int sum = x + y;
int difference = y - x;
int multiplication = x * z;
int quotient = z / x;
if (x < y) {
printf("x is less than y\n");
}
if (y >= z) {
printf("y is greater than or equal to z\n");
}
if (x > 2 && y < 20) {
printf("x is greater than 2 and y is less than 20\n");
}
x = y;
x++;
y--;
return 0;
}