9 lines
149 B
Plaintext
Raw Permalink Normal View History

2018-03-07 08:47:43 +01:00
import java.lang.Integer;
import java.lang.Long;
public class AddLong{
Long add(Integer a, Long b) {
2018-03-07 08:47:43 +01:00
Long c = a+b;
return c;
}
}