import java.lang.reflect.Method; 

public class Start { 

    public static int method(byte a, int b) { 
        return b + a; 
    } 

    public static void main(String[] args) throws Exception { 
        int i = 0; 
        Method m = Start.class.getMethod("method", new Class<?>[] { byte.class, int.class }); 
        while (i < 17) { 
            try { 
                m.invoke(null, new Double(0), new Integer(0)); 
            } catch (IllegalArgumentException e) { 
                // e.printStackTrace(); 
                System.out.println(e.getMessage()); 
            } 
            i++; 
        } 

    } 
} 