Problem2104--ABC126A - Changing a Character

2104: ABC126A - Changing a Character

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Problem Statement

You are given a string S of length N consisting of A, B and C, and an integer K which is between 1 and N (inclusive). Print the string S after lowercasing the K-th character in it.

Constraints

  • 1N50
  • 1KN
  • is a string of length N consisting of A, B and C.

Input

Input

Input is given from Standard Input in the following format:

N K 
S

Output

Output

Print the string S after lowercasing the K-th character in it.

Sample Input Copy

3 1
ABC

Sample Output Copy

aBC

Source/Category