← Back to List

10824번: 네 수 ↗

Solutions

Python 3
67 B | 67 chars
a,b,c,d=input().split(" ")
a=a+b
c=c+d
a=int(a)
c=int(c)
print(a+c)