using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Collection_2
{
class Program
{
static void Main(string[] args)
{
List<string> names = new List<string>();
List<float> scores = new List<float>();
names.Add("Dara");
scores.Add(90);
names.Add("Kunthear");
scores.Add(95.5f);
names.Add("Veasna");
scores.Add(70);
names.Add("Sambo");
scores.Add(100);
names.Add("Bopha");
scores.Add(80);
for (int i = 0; i < names.Count; i++)
Console.WriteLine(names[i] + "," + scores[i]);
Console.ReadLine();
}
}
}