https://www.acmicpc.net/problem/10824
문자열로 입력받은 a, b, c, d를 각각 a+b, c+d로 만든다음 int()로 변환시킨 후 더하면 된다.
from sys import stdin input = stdin.readline array = list(input().split()) a = int(array[0]+array[1]) b = int(array[2]+array[3]) print(a+b)