using System;
public class Program
{
public static void Main()
int test = 3;
int.TryParse("", out test);
Console.WriteLine(test);
}