import numpy as np
# Define the 5x3 matrix and the 3x2 matrix
matrix_A = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12], [13, 14, 15]])
matrix_B = np.array([[1, 2], [3, 4], [5, 6]])
# Multiply the matrices using the '@' operator
result_matrix = matrix_A @ matrix_B
print(result_matrix)