fork download
  1. ile = int(input())
  2. for i in range (ile):
  3. print('*')
  4.  
  5. while ile > 0:
  6. print('*')
  7. ile = ile -1
  8.  
  9.  
  10.  
  11.  
  12.  
Success #stdin #stdout 0.04s 9724KB
stdin
3
stdout
*
*
*
*
*
*