A - Changing a Character Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100

問題文

A, B, C からなる長さ N の文字列 S と、1 以上 N 以下の整数 K が与えられます。 文字列 SK 文字目を小文字に書き換え、新しくできた S を出力してください。

制約

  • 1 ≤ N ≤ 50
  • 1 ≤ K ≤ N
  • SA, B, C からなる長さ N の文字列

入力

入力は以下の形式で標準入力から与えられる。

N K
S

出力

文字列 SK 文字目を小文字に書き換え、新しくできた S を出力せよ。


入力例 1

3 1
ABC

出力例 1

aBC

入力例 2

4 3
CABA

出力例 2

CAbA

Score : 100 points

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

  • 1 ≤ N ≤ 50
  • 1 ≤ K ≤ N
  • S is a string of length N consisting of A, B and C.

Input

Input is given from Standard Input in the following format:

N K
S

Output

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


Sample Input 1

3 1
ABC

Sample Output 1

aBC

Sample Input 2

4 3
CABA

Sample Output 2

CAbA