반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.util.Scanner;
 
/*
 * Author : Jeonghun Cho
 * Date : December 2, 2019
 */
public class Main {
 
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner sc = new Scanner(System.in);
        while(sc.hasNextInt()) {
            System.out.println(sc.nextInt()+sc.nextInt());
        }
    }
 
}
Colored by Color Scripter
반응형

+ Recent posts