Reverse

3

1 votes
Easy
Problem

Given a String, reverse each word in it. Words are separated by dots.

Input:
The first line contains T denoting the number of testcases. Then follows description of testcases. Each case contains a string containing dots and characters.

Output:
For each test case, output a String in single line containing the reversed words of the given String.

Constraints:
1<=T<=10
1<=Length of String<=2000

Sample Input
2
i.like.this.program.very.much
pqr.mno
Sample Output
i.ekil.siht.margorp.yrev.hcum
rqp.onm
Time Limit: 5
Memory Limit: 256
Source Limit:
Editor Image

?