using System.Collections.Generic;
using System.Threading.Tasks;
namespace ProgFundamentals4
public static void Main(string[] args)
Console.WriteLine("Enter any symbol $ or * or @");
char alpha = Convert.ToChar(Console.ReadLine());
Console.WriteLine("Enter number of repeats : ");
int rows=Convert.ToInt32(Console.ReadLine());