5 lines
81 B
Python
5 lines
81 B
Python
def calculate(height, wight):
|
|
result = wight / height ^ 2
|
|
return result
|
|
|