package main import "fmt" func main() { fmt.Println(addNumbers(2, 3)) } func addNumbers(x int, y int) int { return y + x }