6 lines
102 B
Plaintext
6 lines
102 B
Plaintext
main() {
|
|
x := 2
|
|
y := 3
|
|
result := (x + y + (x + y) * (x + y)) / x / y + x + y
|
|
assert result == 10
|
|
} |