101260: [AtCoder]ABC126 A - Changing a Character

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

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

Input

题意翻译

## 输入格式 输入共两行。第一行两个整数 $n,k$ 。 第二行一个由 `A`,`B`,`C` 组成字符串 $s$ 。 $n$ 表示字符串的长度。 把字符串 $s$ 的第 $k-1$ 个字符变成小写。(字符串 $s$ 的第一个字符的下标为 $0$ ) ## 输出格式 一行一个字符串 $s$ ,为转换后的字符串。

加入题单

算法标签: