#abc126a. [abc126_a]Changing a Character

[abc126_a]Changing a Character

Problem Statement

You are given a string SS of length NN consisting of A, B and C, and an integer KK which is between 11 and NN (inclusive). Print the string SS after lowercasing the KK-th character in it.

Constraints

  • 1N501 ≤ N ≤ 50
  • 1KN1 ≤ K ≤ N
  • SS is a string of length NN consisting of A, B and C.

Input

Input is given from Standard Input in the following format:

NN KK SS

Output

Print the string SS after lowercasing the KK-th character in it.


Sample Input 1

3 1
ABC

Sample Output 1

aBC

Sample Input 2

4 3
CABA

Sample Output 2

CAbA