#K71757. Reverse Characters in Each Word

    ID: 33602 Type: Default 1000ms 256MiB

Reverse Characters in Each Word

Reverse Characters in Each Word

You are given a sentence. Your task is to reverse the order of characters in each word while keeping the words in their original order. The sentence is provided via the standard input (stdin) and the result should be printed to the standard output (stdout).

Note: The sentence consists of one line with words separated by spaces. Each word must be reversed individually.

Example:

Input:  The quick brown fox
Output: ehT kciuq nworb xof

inputFormat

The input consists of a single line that contains the sentence. Words are separated by spaces.

outputFormat

Output the modified sentence with each word reversed, maintaining the original word order. The output should be printed to stdout.

## sample
The quick brown fox
ehT kciuq nworb xof