diff --git a/solutions/118A.py b/solutions/118A.py new file mode 100644 index 0000000..47c1901 --- /dev/null +++ b/solutions/118A.py @@ -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))