Codeforces 59A

                                           

                                           A. Word

time limit per test
2 seconds
memory limit per test
256 megabytes

Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At that as little as possible letters should be changed in the word. For example, the word HoUse must be replaced with house, and the word ViP — with VIP. If a word contains an equal number of uppercase and lowercase letters, you should replace all the letters with lowercase ones. For example, maTRIx should be replaced by matrix. Your task is to use the given method on one given word.

Input

The first line contains a word s — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.

Output

Print the corrected word s. If the given word s has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.

Examples
Input
Copy
HoUse
Output
Copy
house
Input
Copy
ViP
Output
Copy
VIP
Input
Copy
maTRIx
Output
Copy
matrix




Solution:

  1. #include <iostream>
  2. #include<string>
  3. #include <cstring>
  4. using namespace std;
  5.  
  6. int main() {
  7. string str ;cin>>str;
  8. int ln=str.length(); int check=0;
  9. int small=0,cap=0;
  10. for(int i=0;i<ln ;i++)
  11. {
  12. if(str[i] >= 'A' and str[i]<='Z')
  13. cap++;
  14. else small++;
  15. }
  16. if (cap > small)
  17. for(int i=0;i<ln ;i++)
  18. str[i]= toupper(str[i]);
  19. else
  20. for(int i=0;i<ln ;i++)
  21. str[i]=tolower(str[i]);
  22.  
  23. cout<<str<< endl;
  24. return 0;
  25. }

Comments

Popular posts from this blog

595A. Vitaly and Night

1096A Find Divisible codeforces

798A - Mike and palindrome