← Back to List

11466번: Alex Origami Squares ↗

Solutions

Python 3
102 B | 102 chars
a,b = map(float,input().split())
ans = min(max(a,b)/3,min(a,b))
ans = max(ans, min(a,b)/2)

print(ans)