https://www.acmicpc.net/problem/10824
a,b,c,d = map(int, input().split()) temp1 = str(a)+str(b) temp2 = str(c)+str(d) temp1 = int(temp1) temp2 = int(temp2) print(temp1+temp2)
a,b 더하고 c,d를 더할때는 문자열의 특성을 이용해 문자를 붙여주며, 이후 정수로 변환하여 더해줍니다.