fork(1) download
  1. # your code goes
  2. largura = 10
  3. altura = 5
  4. i = 0
  5. while i < altura:
  6. print('#'*largura)
  7. i += 1
Success #stdin #stdout 0s 9992KB
stdin
Standard input is empty
stdout
##########
##########
##########
##########
##########