cats=0 dogs=0 while cats+dogs<8: animal = input() if animal=='cat': cats+=1 print("meow"[:cats]) if animal=='dog': dogs+=1 print("woof"[:dogs])