[파이썬/python] 백준 10824번 : 네 수 (🥉3)

a,b,c,d = map(str,input().split())
print(int(a+b)+int(c+d))

a+b 와 c+d의 값을 각각 정수로 변환시킨 후 다시 더해주었다.

comment