using System;
namespace P10_2
{
    class Program
    {
        static int Zero = 0; 
        static void Main(string[] args)
        {
            // Ƿ쳣 
            try
            {
                int j = 22 / Zero;
            }
            // tryе쳣͵catch 
            catch (Exception e)
            {
                Console.WriteLine("쳣" + e.Message+"");
            }
            Console.WriteLine("ִ֮е"); 
            Console.ReadLine();
        }
    }
}
