Napisz metodę pomnóż () w klasie arytmetyki

int x = 12;int y = 13;int z = x * y;System.out.println("Multiplication: " + z);
Black Barracuda