Skip to content
This repository was archived by the owner on Jul 3, 2020. It is now read-only.

Latest commit

 

History

History
25 lines (21 loc) · 752 Bytes

File metadata and controls

25 lines (21 loc) · 752 Bytes

Change_String

Given a string S, the task is to change the string according to the condition; If the first letter in a string is capital letter then change the full string to capital letters, else change the full string to small letters.

Input:

The first line of input contains an integer T denoting the number of test cases. Then T test cases follow. Each test case contains a string S.

Output:

For each test case, print the changed string in a new line.

Constraints:

1<=T<=200
1<=|string length|<=10000

Example:

Input:

4
geEkS
FoR
sMMMMMMMMnnnnMMMNnnMMMNnnnMMM
MssssssssssssssssssssssssssssssssssssssNNmmss

Output:

geeks
FOR
smmmmmmmmnnnnmmmnnnmmmnnnnmmm
MSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSNNMMSSS