def main(): meow(5) def meow(n): for i in range(n): print("meow") main()