Find dividers of an integer.
[N,M]=divider(N1)
find two integers N and M such that M*N=N1 and M and N as close as possible from sqrt(N1).
N1=258; [N,M]=divider(N1)