Write a program that compares two files and prints information about the differences between them. For example, consider a file data1.txt with the following contents:
This file has a great deal oftext in it which needs to
be processed.
Consider another file data2.txt that exists with the following contents:
This file has a grate deal oftext in it which needs to
bee procesed.
A dialogue with the user running your program might look like the following:
Enter a first file name: data1.txtEnter a second file name: data2.txtDifferences found:Line 1:< This file has a great deal of> This file has a grate deal of
Line 4:< be processed.> bee procesed.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.