Edwin wants to create a program that interacts with a web server to test his knowledge of making HTTP requests using Go.
His program must take as input a certain url of a web server, and then use http.Get() to send a GET request to the URL. It should return "Success" and the StatusCode if the request succeeds, and "Fail" and the StatusCode otherwise.
Remember that the status codes between 200 and 299 indicate that the request has succeeded, while all the codes starting with a 4 signalize an error.