← Back to List
16481번: 원 전문가 진우 ↗
Solutions
Python 3
58 B | 58 chars
a,b,c=map(int,input().split()) print(a*b*c/(a*b+b*c+a*c))