def algorytm(a,h):
P = (a*h)/2
return P
print(algorytm(17,9))
print(algorytm(5,10))
print(algorytm(24,13))
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
def algorytm(a,h):
P = (a*h)/2
return P
print(algorytm(17,9))
print(algorytm(5,10))
print(algorytm(24,13))