using System;
public class Program
{
public static void Main()
Console.WriteLine("Írjon be egy számot!");
string ez = Console.ReadLine();
int a = Convert.ToInt32(ez);
if (a < 10 && a > -10)
Console.WriteLine("Egyjegyű!");
}
else
if (a < 100 && a > -100)
Console.WriteLine("Kétjegyű!");
Console.WriteLine("Többjegyű!");