본문 바로가기
Beakjoon&프로그래머스/Java

[프로그래머스/Java] 덧셈식 출력하기

by 현장 2025. 2. 5.

-Code

import java.util.Scanner;

public class Solution {
    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);
    }
}