python-algorithm

[백준] 11943

무적김두칠 2020. 12. 16. 10:07

1
2
3
a,b=map(int,input().split())
c,d=map(int,input().split())
print(min(a+d,b+c))
cs
반응형