a와 b 출력하기 Lv. 0

박영준·2023년 6월 22일
0

코딩테스트

목록 보기
275/300
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);
    }
}

해결법

방법 1

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

a와 b 출력하기 Lv. 0

profile
개발자로 거듭나기!

0개의 댓글