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);
}
}
'Coding Test > Programmers' 카테고리의 다른 글
프로그래머스 java 대소문자 바꿔서 출력하기 (0) | 2025.03.08 |
---|---|
프로그래머스 java 문자열 반복해서 출력하기 (0) | 2025.03.08 |
프로그래머스 java 문자열 출력하기 (0) | 2025.03.08 |
프로그래머스 java [PCCE 기출문제] 1번 / 문자 출력 (0) | 2025.03.08 |
프로그래머스 javascript 문자열을 정수로 변환하기 (0) | 2025.02.16 |