S = input("Введите строку: ") vowels = "aeiouy" result = "" for char in S: if char not in vowels: result += char print(result)
kfswfsfhzd