aboutsummaryrefslogtreecommitdiff
path: root/StringTask/StringTask.cpp
blob: 74d46351d90db8b70cd74de3a157ebfecb821d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  string s;
  cin >> s;
  string vowels = "aeiouy";
  set<char> st(vowels.begin(), vowels.end());
  string ans = "";
  for (char ch : s) {
    if (!st.count(tolower(ch))) {
      ans += "." + string(1, tolower(ch));
    }
  }
  cout << ans << '\n';
  return 0;
}