using System;
using System.Collections.Generic;
class Program
{
static void Main() {
HashSet<int> hs = new HashSet<int>();
for (int i = 0; i < 5; i++) {
hs.Add(i * 3);
}
foreach (int item in hs) {
Console.Write("{0}{1}", item, " ");
}
}
}
/*
run:
0 3 6 9 12
*/