fork download
  1. n=4
  2. for i in range(n):
  3. for j in range(n):
  4. print("*", end=" ")
  5. print()
Success #stdin #stdout 0.13s 14124KB
stdin
Standard input is empty
stdout
* * * * 
* * * * 
* * * * 
* * * *