fork download
  1. row= 6
  2. for i in range(1,row+1):
  3. for j in range(1,i+1):
  4. print((i*2-1),end = " ")
  5. i=i+1
  6. print(" ")
Success #stdin #stdout 0.04s 9516KB
stdin
Standard input is empty
stdout
1  
3 3  
5 5 5  
7 7 7 7  
9 9 9 9 9  
11 11 11 11 11 11