using System.Text.RegularExpressions;
public static void Main()
string text = Console.ReadLine();
string pattern = @"(?<=href="")(.*)(?="")";
MatchCollection links = Regex.Matches(text,pattern, RegexOptions.IgnorePatternWhitespace);
foreach (var link in links)