1000:A+B problem

来源:互联网 发布:招聘淘宝处理中差评 编辑:程序博客网 时间:2024/04/27 17:32
Problem Description
Calculate A + B.
Input
Each line will contain two integers A and B. Process to end of file.
Output
For each case, output A + B in one line.
Sample Input
1 1
Sample Output
2
Answer:import java.util.Scanner;public class Main{public static void main(String[] args) {Scanner scan = new Scanner(System.in);while(scan.hasNext()){int i = scan.nextInt();int j = scan.nextInt();System.out.println(i+j);}}}