I\'m running a simple code to print numbers from 100 to 1:
for (int i = 100; i > 0; i--) { Console.Write(i + "\\t"); }
in th