You would use HttpWebRequest to get the page text, then, usually regular expressions to match the bit you want and extract it. HttpWebRequest will return the html source of the page, so you would be advised to look at that first, then see if you can identify the area where the numbers appear. Hopefully, they will be in a div or span with a unique ID. Most often, they are not, but that doesn't mean to say a regular expression to do the job will be too difficult to construct.
If you want to post the url of the page, and show which bit you want to extract, someone might help with the code for you.