본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 30310번 Finding Forks

by 현장 2024. 2. 25.

-Code

n = int(input())
forks = sorted(list(map(int, input().split())))

print(forks[0] + forks[1])