# 9*9 for i in list(range(1,10)): for j in list(range(1,10)): if i >= j: print(i * j, '', end=''); else: print("\n"); break;