poj1000

package easy;


import java.util.Scanner;

/**
 *poj1000 easy
 * @author NC
 */
public class Poj1000 {

    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        if (scan.hasNext()) {
            System.out.println(scan.nextInt() + scan.nextInt());

        }
    }
}

你可能感兴趣的:(java)