ZZULIOJ 1001-整数a+b,Java

1001: 整数a+b

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        System.out.println(a + b);
    }
}

你可能感兴趣的:(#,Java刷题,java)