using System;
public class Program
{
public static void Main()
int number = 5; // Predefined number for testing instead of Console.ReadLine()
for (int i = 0; i < number; i++)
Console.Write("*"); // Prints * without a new line
}
Console.WriteLine(); // Move to the next line after the loop finishes