11308 - 大写字母转小写字母

#include<bits/stdc++.h>
using namespace std;
int main(){
  	char a,b;
  	cin>>a;
  	b=a+('a'-'A');
  	cout<<b;
	return 0;
}