반응형

● 문제 접근 과정

  • a와b를 int형으로 입력을 받음.
  • 출력을 둘의 값을 더한 값으로 해줌.

● 구현

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int a = sc.nextInt();
        int b = sc.nextInt();

        System.out.println(a + b);

        sc.close();
    }

}

https://www.acmicpc.net/problem/2558

 

반응형

+ Recent posts