main:-write('Enter the first no.'),read(X),nl,
         write('Enter the second no.'),read(Y),nl,
         write('Enter the second no.'),read(Z),nl,
          append([],[X,Y,Z],A),
           %sort([X,Y,Z],A),
           write(A).
