100 atcoder#ABC126A. [ABC126A] Changing a Character

[ABC126A] Changing a Character

Score : 100100 points

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 \leq N \leq 50
  • 1KN1 \leq K \leq 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.

3 1
ABC
aBC
4 3
CABA
CAbA