[프로그래머스] Lv.0 덧셈식 출력하기.java

hgghfgf·2023년 4월 30일
0

프로그래머스

목록 보기
12/227

덧셈식 출력하기.java

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+" = "+(a+b));
    }
}

출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges

0개의 댓글