public class FuncDemo2 { public static int add(int a,int b){ return a+b; } public static void main(String args[]){ int x =add(3,5); } }