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

[백준/파이썬] 25628번 햄버거 만들기

by 현장 2022. 9. 26.

-Code

a, b = map(int, input().split())
print(min(a//2, b))