I have an excel file with 8083 X and Y columns.
The first column represents the name of the image I have, and the other column represents the multiplicaltion reusult of the (x,y) resolution of that image (i.e; (512,512) -> 262144.
Now, in this case, I will have an image name and a result beside it.
I'm trying to plot a graph that gives me the number of images that equal for example 262144.
So, I will have an x-axis with representing the "resolution" multiplication result, and a "y-axis" representing the "Number of images".
Is there a software program that enables me to get such graph? Provided that, again, I have 8083 records.
Thanks.

This is tricky to do in Excel, since you seem to want to plot a huge amount of points, e.g. it could look like
which will be a very long list.
You can do it in R quite easily. For example
would draw a rather cramped plot. Here x takes the values 1, 2, ..., 8083 and y takes the values 2, 3, ..., 8084.
Another example is:
Here x takes the values 1, 100, 152 whereas y takes the values 555, 444, 512. Here's what the output would look like:
However, I don't really understand why you would want to plot this. If you're just after the number of data points in which x*y = 262144 (or some other number), then you can use an indicator variable in Excel, as I have done in the following example:
Here I entered
into cell E3, then dragged it along through to cell G9. I manually entered the numbers in cells E11, F11 and G11.