using System;
public class Program
{
public static void Main()
int b;
int [] a = new int [4];
for (int i=0;i<15;i++)
b = int.Parse(Console.ReadLine()); //הופך את a למערך מונים
a[b]++;
}
int max = a[1];
for (int i =2;i<4;i++)
if (a[i]>max)
max = a[i];
for (int i=1;i<4;i++)
Console.WriteLine("I got the number "+i+" "+a[i]+" times.");
Console.WriteLine("the most popular number was: "+ max);