begin var a := new List(arr(1, 2)); match a with integer(var c): write(1); boolean(var s): write(2); List(var l) when l.Count > 0 :write(3) end; end.