fork download
  1. a = int(input())
  2. k=a//3
  3. i=0
  4. while i > k:
  5. print("x", "x", sep="", end="")
  6. i=i+1
Success #stdin #stdout 0.02s 9256KB
stdin
6
stdout
*6!
*6!
*6!
*6!
*6!
*6!