#!/usr/bin/env python3

from sympy import Matrix, Rational

M = Matrix([[Rational(1, 3), Rational(3, 5)], [Rational(4, 9), Rational(101, 102)]])

print(f"M = {M}")
print(f"M * M = {M * M}")
