blob: 9723550fca26ad55c6c019cc470cb984968cb9b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env python3
s = input()
ans = ""
vowels = "aeouiy"
for ch in s:
if ch.lower() in vowels:
s = s.replace(ch, "")
for ch in s:
ans += "." + ch.lower()
print(ans)
|