What does this program print?

from Go fundamentals
Go 1.27 beginner 2 min

What does this program print?

Go
package main

import "fmt"

const step = 2

func main() {
    var total int
    count := 3
    total += count * step
    fmt.Println(total)
}
Open in playground
Report an error