#include<fstream>
using namespace std;
ifstream fin("date.in");
ofstream fout("date.out");
long n;
int f[10],a[10];
void citire()
{ fin>>n;
while(n)
{ f[n%10]++;
n=n/10;
}
}
void ordonare()
{
for(int i=0; i<=9;i++) a[i]=i;
for(int i=0;i<=9;i++)
for(int j=i+1;j<=9;j++)
if(f[a[i]]<f[a[j]])
{ int aux=a[i];
a[i]=a[j];
a[j]=aux;
}
}
void afis()
{ for(int i=0;i<=9;i++) if(f[a[i]]!=0) fout<<a[i]<< " ";
}
int main()
{
citire();
ordonare();
afis();
}
|