package p; class Multiply { static int test(int a, int b) { return a * b; } public static void main() { test(6, 8); } }