using System.Collections.Generic;
string x = Console.ReadLine();
string[] temp = x.Split(',');
List<int> numbers = new List<int>{};
foreach(string s in temp)
return numbers.ToArray();
List<string> RlToStrLst()
string x = Console.ReadLine();
string[] temp = x.Split(' ');
List<string> words = new List<string>{};
foreach(string s in temp)
string x = Console.ReadLine();
double x = Convert.ToDouble(Console.ReadLine());
Console.WriteLine(string.Join(", ", RlToIntAr()));