输入一个大写字母,输出对应的小写字母
#include<bits/stdc++.h>
using namespace std;
int main(){
char a;
cin>>a;
_______//将大写转化成小写
cout<<a;
return 0;
}
请补全横线处缺少的代码