public static void Main()
Console.WriteLine("Enter numbers");
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
for (int i = a; i <= b; i++)
for (int j = 1; j <= i; j++)
if (i == j && count % 2 == 1)
Console.WriteLine("The number {0} has an odd amount of del", i);
for (int o = 1; o <= j; o++)
Console.WriteLine("The number {0} is a del of the number {1}", o, j);