8 lines
100 B
C
8 lines
100 B
C
int main() {
|
|
int x;
|
|
int y;
|
|
x = 42;
|
|
y = 8;
|
|
return (x + y) * (x - y) / (x * y);
|
|
}
|