using System;
public class Program
{
public UInt32 hexValue = 58;
public static void Main()
int decValue = Convert.ToInt32(hexValue, 16);
Console.WriteLine(decValue.ToString());
}