본문 바로가기

코딩테스트

[프로그래머스] Python - Lv.0 문자열 붙여서 출력하기

https://school.programmers.co.kr/learn/courses/30/lessons/181946

문제

 

코드

str1, str2 = input().split(' ')

print(str1+str2)