[algorithm] a와 b 출력하기

인철·2024년 2월 27일
0

algorithm

목록 보기
83/91

정수 a와 b가 주어집니다. 각 수를 입력받아 입출력 예와 같은 형식으로 출력하는 코드를 작성해 보세요.

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);
    }
}
profile
같은글이있어도양해부탁드려요(킁킁)

0개의 댓글