Here you can find the source of multiply(int x, int y)
public static int multiply(int x, int y)
//package com.java2s; //License from project: Apache License public class Main { public static int multiply(int x, int y) { return x * y; }/*from w w w . j a v a2 s . c om*/ }