Suppose you have a two-dimensional slice of integers that compose a 3x3 matrix:
matrix := [][]int{
{1, 2, 3},
{4, 5, 6},
{7, 8, 9},
}
Write a Go program that takes as an input an integer number num and then uses a nested for...range loop to print each element of the matrix in a new line, multiplied by num