1/**
2 * Copyright(C) 2003
3 * All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4 *
5 * Permission to use, copy, modify, and distribute this
6 * software and its documentation for EDUCATIONAL purposes
7 * and without fee is hereby granted provided that this
8 * copyright notice appears in all copies.
9 *
10 * @date : September 1, 2003
11 * @author : Salih Yurttas
12 */
13
14
15using System;
16
17namespace ABC
18{
19 public class A00
20 {
21 public static void Main(string[] args)
22 {
23 A A0 = new A();
24
25 Console.WriteLine(A0.I0);
26 Console.WriteLine(A0.I1);
27 Console.WriteLine(A0.I2);
28 Console.WriteLine();
29
30 A0.I0 = 2;
31 A0.I1 = 8;
32 A0.I2 = 7;
33
34 Console.WriteLine(A0.I0);
35 Console.WriteLine(A0.I1);
36 Console.WriteLine(A0.I2);
37 Console.WriteLine();
38
39 int a1 = A0.MA1();
40
41 Console.WriteLine(a1);
42
43 A0.MA2(3);
44
45 A0.Output();
46
47 AA AA0 = new AA();
48
49 Console.WriteLine(AA0.I0);
50 Console.WriteLine(AA0.I1);
51 Console.WriteLine(AA0.I2);
52
53 a1 = AA0.MA1();
54
55 Console.WriteLine(a1);
56
57 AA0.MA2(3);
58
59 AA0.Output();
60 }
61 }
62}