代码在这里
import java.util.Scanner; public class plus{ static long a,b; public static void main(String[] args) { Scanner cin = new Scanner(System.in); a = cin.nextLong(); b = cin.nextLong(); long c = a + b; System.out.printf("%d",c); } }