{{{ #!python count=1 while (count<=7):    if (count==4):       print("more!")    else:        for r in range(0,count):          print(count, "potato, ", end="")       print("")    count+=1 print("score!") }}}