begin var a:=ReadArrInteger(3); a:=a.Sorted.Reverse.ToArray; a.Println; end.
begin var (a,b,c):=ReadInteger3('Введите 3 числа->'); if (a>b) and (b>c) then begin Println(a,b,c); exit; end; if (a>c) and (c>b) then begin Println(a,c,b); exit; end; if (b>a) and (a>c) then begin Println(b,a,c); exit; end; if (b>c) and (c>a) then begin Println(b,c,a); exit; end; if (c>a) and (a>b) then begin Println(c,a,b); exit; end; if (c>b) and (b>a) then begin Println(c,b,a); exit; end; end.
//Версия 3.3, сборка 1634 (14.02.2018)
begin
var a:=ReadArrInteger(3);
a:=a.Sorted.Reverse.ToArray; a.Println;
end.
begin
var (a,b,c):=ReadInteger3('Введите 3 числа->');
if (a>b) and (b>c) then begin Println(a,b,c); exit; end;
if (a>c) and (c>b) then begin Println(a,c,b); exit; end;
if (b>a) and (a>c) then begin Println(b,a,c); exit; end;
if (b>c) and (c>a) then begin Println(b,c,a); exit; end;
if (c>a) and (a>b) then begin Println(c,a,b); exit; end;
if (c>b) and (b>a) then begin Println(c,b,a); exit; end;
end.