Modify program 1sqfit from Example $4.7$ to read its input values from an ASCII file named input.1. dat. The data in the file will be organized in rows, with one pair of $(x, y)$ values on each row, as shown below:
$$
\begin{array}{ll}
1.1 & 2.2 \\
2.2 & 3.3
\end{array}
$$
Test your program using the same two data sets that were used in Example 4.7. (Hint: Use the load command to read the data into an array named input1, and then store the first column of inpat 1 into array $x$ and the second column of input 1 into array $y$.)