HDUOJ 1000
注:类名必须为Main。
- Problem Description:
Calculate A + B.
- Input:
Each line will contain two integers A and B. Process to end of file.
- Output:
1 1
- Sample Output:
2
Language: Java
import java.util.*;
public class Main
{
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
while(sc.hasNextInt())
{
int a=sc.nextInt();
int b=sc.nextInt();
System.out.println(a+b);
}
}
}