fork download
  1. # your code goes here
  2. for i in range(1,5):
  3. for j in range(i):
  4. print(i)
  5. print()
Success #stdin #stdout 0.07s 14036KB
stdin
Standard input is empty
stdout
1

2
2

3
3
3

4
4
4
4