CF59A.Word

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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.

输入格式

The first line contains a word ss — it consists of uppercase and lowercase Latin letters and possesses the length from 11 to 100100 .

输出格式

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

输入输出样例

  • 输入#1

    HoUse
    

    输出#1

    house
    
  • 输入#2

    ViP
    

    输出#2

    VIP
    
  • 输入#3

    maTRIx
    

    输出#3

    matrix
    
首页