There is work
UZBEKISTAN 🇺🇿 N1
There is work
a, b = input(), input() u = 'aeiouy' s = 0 for i in range(len(a)): if (a[i] in u and b[i] not in u) or (a[i] not in u and b[i] in u): s += 1 print(s)a=input() b=input() s="aeiouy" k=0 for i in range(len(a)): if a[i]!=b[i]: if (a[i] not in s and b[i] in s) or (a[i] in s and b[i] not in s): k+=1 print(k)print((lambda x: 28 - x if x < 28 else 'Enough')(int(input())))
©2026 Sketchub | User Policy