A + B

문제 풀러가기

1000

코드

import java.util.*;

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();
  }
}

설명

기초적인 문제이다. 입력을 받는 부분을 구현하고 출력하는 부분을 구현 하면된다.