def meow(x: int) -> None: for _ in range(x): print("meow", end="") meow(10)