fejezet 5

This commit is contained in:
2021-12-07 13:51:21 +01:00
parent b7f1716b79
commit bc7f8f7f32
2 changed files with 37 additions and 0 deletions

13
atfogo/atfogo.py Normal file
View File

@@ -0,0 +1,13 @@
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))