Var
a,b,c:real;
Begin
WriteLn('Введите три числа');
ReadLn(a,b,c);
if (a<=b)and(b<=c) then Write(a,' ',b,' ',c)<br>else if (a<=c)and(c<=b) then Write(a,' ',b,' ',c)<br>else if (b<=a)and(a<=c) then Write(b,' ',a,' ',c)<br>else if (b<=c)and(c<=a) then Write(b,' ',c,' ',a)<br>else if (c<=a)and(a<=b) then Write(c,' ',a,' ',b)<br>else if (c<=b)and(b<=a) then Write(c,' ',b,' ',a)<br>End.