CF118A.String Task

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Petya started to attend programming lessons. On the first lesson his task was to write a simple program. The program was supposed to do the following: in the given string, consisting if uppercase and lowercase Latin letters, it:

  • deletes all the vowels,
  • inserts a character "." before each consonant,
  • replaces all uppercase consonants with corresponding lowercase ones.

Vowels are letters "A", "O", "Y", "E", "U", "I", and the rest are consonants. The program's input is exactly one string, it should return the output as a single string, resulting after the program's processing the initial string.

Help Petya cope with this easy task.

输入格式

The first line represents input string of Petya's program. This string only consists of uppercase and lowercase Latin letters and its length is from 11 to 100100 , inclusive.

输出格式

Print the resulting string. It is guaranteed that this string is not empty.

输入输出样例

  • 输入#1

    tour
    

    输出#1

    .t.r
    
  • 输入#2

    Codeforces
    

    输出#2

    .c.d.f.r.c.s
    
  • 输入#3

    aBAcAba
    

    输出#3

    .b.c.b
    
首页