Files
python/atfogo/atfogo.py

13 lines
146 B
Python
Raw Normal View History

2021-12-07 13:51:21 +01:00
import math
def atfogo(b1, b2):
a = int(b1)
b = int(b2)
a *= a
b *= b
c = math.sqrt(a+b)
return c
print(atfogo(2,3))