using System; class TenLittleMonkeys { static void Main() { int i = 10; while(i >= 2) { Console.WriteLine("{0} little monkeys were jumping on a bed", i); Console.WriteLine("one fell off and bumped its head."); Console.WriteLine("Mommy called the doctor and the doctor said:"); Console.WriteLine("'No more monkeys jumping on the bed!'"); Console.WriteLine(); i--; } Console.WriteLine("1 little monkey was jumping on a bed"); Console.WriteLine("it fell off and bumped its head."); Console.WriteLine("Mommy called the doctor and the doctor said:"); Console.WriteLine("'Put those monkeys back to bed!'"); } }