blob: c62c920b62265b7e846e13268844247e28e4b553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package test;
public class Main {
private static int plus(int first, int second){
return first + second;
}
public static void main(String[] args) {
int num = plus(42,13);
System.out.println(num);
}
}
|