python-algorithm

백준 SASA 모형을 만들어보자

무적김두칠 2022. 3. 8. 09:48

1
2
3
n,m=map(int, input().split())
ans=min(n,m)//2
print(ans)
cs

 

반응형