Here you can find the source of sum(int a, int b)
static int sum(int a, int b)
//package com.java2s; //License from project: Apache License public class Main { static int sum(int a, int b) { return a + b; }//from www . j a v a 2 s . c o m }