using System;
public class Program
{
public static void Main()
Console.Write("Enter any integer to find the significant figures: ");
string i = Console.ReadLine();
int num = int.Parse(i);
findsig(num);
}
public static void findsig(int n)
int count = 1;
while (n/10 != 0)
n = n + 1;
count++;
Console.WriteLine("The sig figs are " + count);