static void PrintName(string name)
Console.WriteLine("Hello, {0}!", name);
static int GetMin(int a, int b)
static void RepeatString(string str, int count)
for (int i = 1; i <= count; i++)
Console.WriteLine("{0} ", str);
static string RepeatStringv1(string str, int count)
string repeatedString = string.Empty;
for (int i = 1; i <= count; i++)
public static void Main()
string str = Console.ReadLine();
int count = Convert.ToInt32(Console.ReadLine());
RepeatStringv1(count : count, str : str);