#include<stdio.h>
void swap(int *tp1,int *tp2);
void main()
{
int a,b,c;
scanf("%d,%d,%d",&a,&b,&c);
if(a>b)swap(&a,&b);
if(a>c)swap(&a,&c);
if(b>c)swap(&b,&c);
printf("\n%d,%,%d\n",a,b,c);
}
void swap(int *pt1,int *pt2)
{
int temp;
temp=*pt1;
*pt1=*pt2;
*pt2=temp;
}