Files
python/fejezet 6/f12/f12.py
2021-12-10 08:46:38 +01:00

11 lines
144 B
Python

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))