View Code of Problem 25

#include<bits/stdc++.h>
using namespace std;
int main(){
	char c;
	int n;
	cin>>n;
	for(int i = 0;i<n;i++){
		cin>>c;
		cout<<(char)tolower(c)<<endl;
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 25