using System;
public class Program
{
public static void Main()
Program p = new Program();
p.Value = 1000;
try {
throw new Exception();
} catch if(p.Value <= 10) {
Console.WriteLine("Value <= 10");
} catch if(p.Value <= 100) {
Console.WriteLine("Value <= 100");
}
public int Value {
get;
set;