using System.Collections.Generic;
public static void Main()
for(i=0;i<5;i++)x[i]=i+1;
Console.WriteLine("Size is: "+x.Length + " Sum is: "+x.Sum());
int[,] arr2d = new int[3,2]{ {1, 2},{3, 4},{5, 6} };
int[,] ar2D = new int[2,2];
Console.WriteLine(arr2d[0, 1]);
List<long> v = new List<long>();
for(i=0;i<v.Count;i++)Console.Write(v[i]+" ");
Stack<int> st = new Stack<int>();
Queue<int> q = new Queue<int>();
while(q.Count>0) Console.Write(q.Dequeue()+" "); Console.WriteLine("\nNow Queue size: "+q.Count);
Dictionary<string, int> mp = new Dictionary<String, int>();
foreach(KeyValuePair<string, int> kvp in mp)
Console.WriteLine("Name: {0}, Roll: {1}", kvp.Key, kvp.Value);
Console.WriteLine("Name: {0}, Roll: {1}", kvp.Key, kvp.Value);
Console.WriteLine("Name: {0}, Roll: {1}", mp.ElementAt(i).Key, mp.ElementAt(i).Value);
if(mp.ContainsKey("Riad"))Console.WriteLine("Yes");
SortedSet<long> st1 = new SortedSet<long>();
string[] s = Console.ReadLine().Split('.');
Array.Resize(ref s, s.Length - 1);
foreach(string S in s)Console.WriteLine(S);
Console.WriteLine(s.Length);
Tuple<string, long, int> pair = new Tuple<string, long, int>("Riad", 1965, 65);
Tuple.Create("Name", "Roll");