6 lines
89 B
Python
6 lines
89 B
Python
def meow(x: int) -> None:
|
|
for _ in range(x):
|
|
print("meow", end="")
|
|
|
|
meow(10)
|