提交时间:2025-03-21 16:40:15

运行 ID: 313263

n,m=map(int,input().split()) s=0 for i in range(n): for j in range(m): s+=1 print(s,end=' ') print()