[프로그래머스] 문자열 붙여서 출력하기

금은체리·2023년 10월 26일
0

알고리즘

목록 보기
2/5
import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String a = sc.next();
        String b = sc.next();
        
        System.out.println(a+b);
    }
}
profile
전 체리 알러지가 있어요!

0개의 댓글