59A codeforces - Word
Solution in C++
#include <bits/stdc++.h>
using namespace std;
typedef long long int lli;
#define pii pair<int,int>
int low,upp,n;
string inp,nel,neu;
char th;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
cin>>inp;
n=inp.size();
for(int i=0;i<n;i++)
{
th=inp[i];
if(th>='a' && th<='z')low++,nel+=th,neu+=(th-32);
else if(th>='A' && th<='Z')upp++,neu+=th,nel+=(th+32);
}
cout<<((upp==low)?nel:((upp>low)?neu:nel));
return 0;
}
0 التعليقات:
إرسال تعليق