View Code of Problem 25

#include<bits/stdc++.h>
using namespace std;

int main()
{
	int m;
	cin>>m;
	while(m--) {
		char s;
		cin>>s;
		s+=32;
		cout<<s<<endl;
	}
	return 0;
	
}

Double click to view unformatted code.


Back to problem 25