forked from JavaTX/JavaCompilerCore
9 lines
149 B
Java
9 lines
149 B
Java
import java.lang.Integer;
|
|
import java.lang.Long;
|
|
|
|
public class AddLong{
|
|
Long add(Integer a, Long b) {
|
|
Long c = a+b;
|
|
return c;
|
|
}
|
|
} |