package main import "fmt" func main() { a := 1 b := 2 c := a + b fmt.Println("The addition of ", a, " and ", b, " is ", c) }