View Code of Problem 25

#include<cstdio>
#include<iostream>
using namespace std;
int main(){
	int n;
	cin >> n;
	while(n--){
		getchar();
		char a;
		cin >> a;
		a+=32;
		cout << a << endl;
		
	}
}

Double click to view unformatted code.


Back to problem 25