12 lines
147 B
Python
12 lines
147 B
Python
def count_vowels(s: str) -> int
|
|
return s
|
|
|
|
|
|
|
|
def main():
|
|
print(count_vowels("Привет мир"))
|
|
|
|
|
|
|
|
if __name__ == "__main__": main()
|