6 lines
102 B
Plaintext
Raw Normal View History

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