Given a 3-digit number, find the number that is formed by permutation of tens and ones. (Pascal program).

Pascal:
Program n_1;
var a,b,c,n:integer;
begin
writeln(‘n=’);
readln(n);
a:=n div 100;
b:=n div 10 mod 10;
c:=n mod 10;
writeln(‘novoe=’,a,c,b);
readln;
end.


One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.