using System;
public class Program
{
public static void Main()
int x = 100;
int counter = 0;
do
counter++;
// Console.WriteLine(x);
x--;
}
while (x >= 0);
Console.WriteLine(counter);