#include <iostream>
using namespace std;
int main()
{
int n, d=0, t=0, c;
cout<<"n=";cin>>n;
while(n!=0)
{
c=n%10;
if(c==2)
d=d+1;
if(c==3)
t=t+1;
n=n/10;
}
if(t<d)
cout<<"Cifrele egale cu 2 sunt mai multe";
else
cout<<"Cifrele egale cu 3 sunt mai multe";
return 0;
}