poj1000 A+B Problem

Description

Calculate a+b

Input

Two integer a,b (0<=a,b<=10)

Output

Output a+b

Sample Input

1 2

Sample Output

3
import java.util.Scanner;
public class Main { public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
if (scan.hasNext()) {
System.out.println(scan.nextInt() + scan.nextInt()); }
}
}
上一篇:Zepto 添加手势判断拓展方法(思路+原理)


下一篇:【Azure 应用服务】本地Git部署Java项目到App Server,访问无效的原因