#include <stdio.h>
int main() {
int x = 5, y = 10, z = 15;
int sum = x + y;
printf("%d + %d = %d\n", x, y, sum);
int difference = y - x;
printf("%d - %d = %d\n", y, x, difference);
int product = x * z;
printf("%d * %d = %d\n", x, z, product);
int quotient = z / x;
printf("%d / %d = %d\n", z, x, quotient);
int remainder = y % x;
printf("%d %% %d = %d\n", y, x, remainder);
return 0;
}