def main(): for _ in range(3): meow() def meow(): print("meow") main()