#ABC126A. Changing a Character
Changing a Character
题目描述
You are given a string of length consisting of A
, B
and C
, and an integer which is between and (inclusive). Print the string after lowercasing the -th character in it.
给你一个长度为 的字符串 ,由 "A"、"B "和 "C "组成,以及一个介于 和 (含)之间的整数 。将字符串 中的 -th 字符小写后打印出来。
输入格式
输入内容按以下格式标准输入:
输出格式
将字符串 中的 -th 字符小写后打印出来。
样例 #1
样例输入 #1
3 1
ABC
样例输出 #1
aBC
样例 #2
样例输入 #2
4 3
CABA
样例输出 #2
CAbA
说明
数据规模与约定
- 是长度为 的字符串,由
A
、B
和C
组成。