desguar += and -=

This commit is contained in:
2026-06-06 18:53:11 +02:00
parent 535364931e
commit 22874181cd
32 changed files with 185 additions and 146 deletions

View File

@@ -5,9 +5,9 @@ func main[] : i64
while a < 4000000
if a % 2 == 0
sum = sum + a
sum += a
temp := b
b = a + b
b += a
a = temp
io.println_i64(sum)