CALKO LAB
문제 출처 (BRONZE Ⅳ)https://www.acmicpc.net/problem/33964 풀이주어진 X와 Y만큼 "1" 문자열을 곱해준 뒤int로 형변환 후 더해주었다. 코드X, Y = map(int, input().split())print(int("1" * X) + int("1" * Y))