← Back to List

16204번: 카드 뽑기 ↗

Solutions

Python 3
65 B | 65 chars
N,M,K=list(map(int,input().split()))
print(min(M,K)+min(N-M,N-K))