скелет

This commit is contained in:
Роман Бортников 2026-04-25 11:49:19 +03:00
commit f9c09fbc7d

11
maingit.py Normal file
View File

@ -0,0 +1,11 @@
def count_vowels(s: str) -> int
return s
def main():
print(count_vowels("Привет мир"))
if __name__ == "__main__": main()