#简单的语句,感觉比for循环容易明白
a = 0 while a < 9: a += 1 b = 1 while b <= a: print(a,end = "*") print(b,end = "=") print(a*b,end = " ") b += 1 print()