namespace Day15; public record Lens(string Label, int FocalLength) { public string Visual() { return $"[{Label} {FocalLength}]"; } }