<span>a distributed application structure that partitions tasks or workloads between the providers of a resource or service, called servers, and service requester, called clients</span>
Answer:
vowels = 0
consonants = 0
string = input("Enter string: ")
for x in string:
if x.isalpha():
if x in "AEIOU":
vowels += 1
else:
consonants += 1
print("Vowels =",vowels)
print("Consonants =",consonants)
Explanation:
Anther and Filament
hope his helped ;)