View Code of Problem 25

#include<bits/stdc++.h>

using namespace std;
int main(){
	char a;
	int T;

	cin>>T;
	while(T--){
		cin>>a;
		a=a+32;
		cout<<a<<"\n";
	}
}

Double click to view unformatted code.


Back to problem 25