BlueBook
Given an input string, whose length is less than , output the string
with all of the upper case letters (A
…Z
) converted to the
corresponding lower case letter (a
…z
).
Input Specification
Line : one integer denoting the number of test cases.
Lines : one string of length composed of lower case letters
(a
…z
), upper case letters (A
…Z
), and random characters (*
,
;
, etc).
Sample Input
2
abCDefg
WEEEIPWNNOOBS~~?~?~??@#!#$%?$^?$%*
Sample Output
abcdefg
weeeipwnnoobs~~?~?~??@#!#$%?$^?$%*
Comments
weak test cases, did it with text