for i in range(1, 10):
    for j in range(1, 10):
        print(j, 'x', i, '=', j * i, end = ' ')
    print()