solutions: 118A

This commit is contained in:
Muhammad Nauman Raza 2025-01-14 09:48:58 +00:00
parent 3dcf10add2
commit 783ba33962
Signed by: devraza
GPG key ID: 91EAD6081011574B

9
solutions/118A.py Normal file
View file

@ -0,0 +1,9 @@
s = list(input().lower())
i = ["a", "e", "i", "o", "u", "y"]
s = [c for c in s if c not in i]
for idx, i in enumerate(s):
s[idx] = f".{i}"
print(''.join(c for c in s))