summaryrefslogtreecommitdiff
path: root/output/ex53.java
blob: 778c1bd20f31054e05730e7861519929c35ffa80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class ex53{
    public static void main(String[] a){
        System.out.println(new Test().start(12));
    }
}

class Test {

    int a ;
    int b ;

    public int start(int c) {
        a = c;
        b = a;
        return b;
    }
}