using System;
using System.Net;
using System.IO;
public class EgitimeYardim {
public static void Main() {
HttpWebRequest rq = (HttpWebRequest)
WebRequest.Create("http://www.ntvmsnbc.com/modules/egitimedestek/");
rq.Method = "GET";
StreamReader data = new StreamReader(rq.GetResponse().GetResponseStream());
System.Console.WriteLine(data.ReadToEnd());
data.Close();
}
}
