A=matrix([[4,3],[7,2],[9,0]])
B=matrix([[2,5],[1,6]])
print A
print '-------'
print B
print '-------'
print A*B
print 'B*A is not posible'