using System;
public class Program
{
public static void Main()
string x="abc";
int z=3;
bool i=int.TryParse(x,out z);
Console.WriteLine(z);
}