ssah.py 114 Bytes Edit 1 2 3 4 for i in range(1, 10): for a in range(1, i+1): print(a, '*', i, '=', (a * i), end=' ') print()