int a,n,b,c=0, d=0;
cin >> n >> a >> b;
while(n>0)
{ if(n%10==b) c++;
if(n%10==a) d++;
n/=10; } if(d>c)
cout << "YES";
else cout << "NO";
return 0;
Объяснение:
int a,n,b,c=0, d=0;
cin >> n >> a >> b;
while(n>0)
{ if(n%10==b) c++;
if(n%10==a) d++;
n/=10; } if(d>c)
cout << "YES";
else cout << "NO";
return 0;
Объяснение: