//提交了三次才ac,这题太难了。。。
import java.util.*;
public class Main {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int a,b;
Scanner input=new Scanner(System.in);
while(input.hasNextInt())
{
a=input.nextInt();
b=input.nextInt();
System.out.println(a+b);
}
}
}

被折叠的 条评论
为什么被折叠?



