using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
List<int> intList = new List<int>();
intList.Add(30);
int[] arry = {1,2,34,5};
intList.AddRange(arry);
Console.WriteLine(intList.Count);
intList.Sort();
try {
int n = int.Parse(Console.ReadLine());
Console.Write(n);
}
catch(Exception ex)
Console.Write("Exception caught");