using System.Collections;
using System.Collections.Generic;
static SortedList<(int,int),string> list = new();
public static void Main()
list.Add((3,0),"Three 'O");
list.Add((2,0),"Two 'O");
list.Add((3,3),"Three Three");
list.Add((3,1),"Three One");
foreach(var pair in list){
Console.WriteLine($"{pair}");