#abc126a. [abc126_a]Changing a Character
[abc126_a]Changing a Character
Problem Statement
You are given a string of length consisting of A
, B
and C
, and an integer which is between and (inclusive). Print the string after lowercasing the -th character in it.
Constraints
- is a string of length consisting of
A
,B
andC
.
Input
Input is given from Standard Input in the following format:
Output
Print the string after lowercasing the -th character in it.
Sample Input 1
3 1
ABC
Sample Output 1
aBC
Sample Input 2
4 3
CABA
Sample Output 2
CAbA