using System;
public class Program
{
public static void Main()
int[] n = new int [20];
int round=0;
do{
Console.Write("intput number{0}",round+1);
n[round] = Convert.ToInt32(Console.ReadLine());
round++;
}while(n[round-1]<101);
Console.WriteLine("Round = {0}",round);
for(int i=0;i<round;i++)
Console.Write("{0} ",n[i]);
}