int x, y, num;
Console.WriteLine("ingrese numero");
num = int.Parse(Console.ReadLine());
for (x = 1; x <= num; x++)
{
for (y = 1; y <= x; y++)
{
Console.SetCursorPosition(y * 2 + 5, x * 2 + 5);
Console.WriteLine("{0}", y);
}
}
Console.ReadKey();
}
}
}
BYEEEEE