using System;
public class Program
{
public static void Main()
int x = -1;
int.TryParse("blahblah", out x);
Console.WriteLine(x);
}