package main import "fmt" const step = 2 func main() { var total int count := 3 total += count * step fmt.Println(total) }