2026-03-04 11:56:25 +01:00

8 lines
100 B
C

int main() {
int x;
int y;
x = 42;
y = 8;
return (x + y) * (x - y) / (x * y);
}