using System;
using System.Collections.Generic;
class Program
{
public static List<string> getList(string str1, string str2, string str3) {
List<string> lst = new List<string>();
lst.Add(str1);
lst.Add(str2);
lst.Add(str3);
return lst;
}
static void Main() {
List<string> result = getList("c#", "vb.net", "java");
Console.WriteLine(string.Join(" ", result));
}
}
/*
run:
c# vb.net java
*/