using System.Collections;
public static void Main()
Hashtable table = new Hashtable();
for(int x = 1; x < 100; x++) {
foreach (DictionaryEntry item in table)
if(x % (int)item.Key == 0) toPrint += item.Value;
if(toPrint == "") toPrint += x;
Console.WriteLine(toPrint);