예제 #1
0
        static void Main(string[] args)
        {
            Math math = new Math();
            int a = 100;
            int b = 50;
            Console.WriteLine("Add: " + math.Add(a, b));
            Console.WriteLine("Sub: " + math.Sub(a, b));

            Roman r = new Roman(); // test
            r.Crazy();
            r.Say("test");
        }