using System;
public class Program
{
public static void Main()
Random r = new Random();
Console.WriteLine(r.Next());
string[] sa = new string[3];
sa[0] = "I";
sa[1] = "am";
sa[2] = "Sam";
for(int x = 0; x < sa.Length; x++) {
Console.WriteLine(sa[x]);
}