View Code of Problem 25

#include <iostream>
#include <queue>
using namespace std;
int main(){
	int t;
	cin>>t;
	while(t--){
		char c;
		cin>>c;
		c = (c - 'A') + 'a';
		cout<<c<<endl;
	}
}

Double click to view unformatted code.


Back to problem 25