#K46112. Remove Vowels from a String

    ID: 27905 Type: Default 1000ms 256MiB

Remove Vowels from a String

Remove Vowels from a String

Your task is to write a program that reads a string from standard input and outputs a new string with all vowels removed. Vowels include both uppercase and lowercase letters: \( a, e, i, o, u \). This problem tests your ability to manipulate strings and handle basic input/output through standard streams.

For example:

  • Input: Hello, World! 123
    Output: Hll, Wrld! 123
  • Input: The quick brown fox jumps over the lazy dog.
    Output: Th qck brwn fx jmps vr th lzy dg.

inputFormat

The input consists of a single line containing a string. The string may include letters, digits, spaces, and punctuation.

outputFormat

Output the string after removing all vowels (both uppercase and lowercase).

## sample
Hello, World! 123
Hll, Wrld! 123