public class TestTwoCalls {

    id(b) {
        var c = b;
        return c;
    }
    
    main(x,y) {
    	id(x);
    	return id(y);
    }
}