public static void test5(){
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int y = sc.nextInt();
int z = sc.nextInt();
int i = 0;
if(x>y){
i = x;
x = y;
y = i;
}
if(x > z){
i = x;
x = z;
z = i;
}
if(y>z){
i = y;
y = z;
z = i;
}
System.out.println(x+","+y+","+z);
}
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int y = sc.nextInt();
int z = sc.nextInt();
int i = 0;
if(x>y){
i = x;
x = y;
y = i;
}
if(x > z){
i = x;
x = z;
z = i;
}
if(y>z){
i = y;
y = z;
z = i;
}
System.out.println(x+","+y+","+z);
}