public class ArrayTest {
    public static int hello( int[] tab ) {
	return tab.length + tab[ 0 ] + tab[ 1 ];
    }
}
