using System.Collections;
using System.Collections.Generic;
public static void Main()
Console.WriteLine(string.Format("<svg width='{0}' height='{0}'>", size));
var lines = new List<Line>();
for(int i=0; i <= lineCount; i++)
int x1 = rand.Next(0,size);
int x2 = rand.Next(0,size);
int y1 = rand.Next(0,size);
int y2 = rand.Next(0,size);
lines.Add(new Line { x1 = x1, x2 = x2, y1 = y1, y2 = y2 });
Console.WriteLine(string.Format(" <line x1='{0}' x2='{1}' y1='{2}' y2='{3}' style='stroke:{4};stroke-width:2'/>", x1, x2, y1, y2, color));
Console.WriteLine("</svg>");