hdu1000

来源:互联网 发布:在线文件管理系统源码 编辑:程序博客网 时间:2024/05/17 01:21
//提交了三次才ac,这题太难了。。。import java.util.*;public class Main {/** * @param args */public static void main(String[] args) {// TODO Auto-generated method stubint a,b;Scanner input=new Scanner(System.in);while(input.hasNextInt()){a=input.nextInt();b=input.nextInt();System.out.println(a+b);}}}