6 lines
102 B
Plaintext
Raw Normal View History

2024-07-05 08:10:09 +00:00
main() {
x := 2
y := 3
2024-07-28 16:47:13 +00:00
result := (x + y + (x + y) * (x + y)) / x / y + x + y
assert result == 10
2024-07-05 08:10:09 +00:00
}