# def powitanie(imie,powtorzenie):
#     pass


# powitanie("Bartek", 2)
# imie = "roch"
# powtorzenie = 2 
# powiyanie(12, "bartek")

# def poleprostokonta(dlugoscboku,dlugoscboku1 ):
#     dlugoscboku = int(input("podaj bok1 w cm"))
#     dlugoscboku1 = int(input("podaj bok2 w cm"))
#     print("oto pole trójkąta"(int(dlugoscboku*dlugoscboku1 )))
# poleprostokonta(dlugoscboku,dlugoscboku1) 
# def poleprostokonta(a,b):
#     print(f"Pole prostokonta: {(a*b)/2}")
#     pass
# def poletrojkonta

# import math
# def polekola(r):
#     print(f"Pole kola: {math.pi * r**2}")
#     pass
# polekola(5)

# import time

# def pasekladowania(gotwe,wszystko = 100):
#     wykonane = round(10*gotwe/wszystko)
#     niewykonane = 10 - wykonane

#     testwykonane = '#'*wykonane
#     tekstniewykonane = '_'*niewykonane
#     print(f'\r[{testwykonane}{tekstniewykonane}]', end=' ')
#     pass
# for i in range(100):
# pasekladowania(i)
# time.sleep(0.1)
# pass

# def foo(a,n):
#     for i in range(a,a+n):
#       print(f"{i}** 2 = {i ** 2}")
#     pass
# foo(5,4)

# from math import sqrt
# def poleszesciokataforemnego(a):
#    return 3 * sqrt(3) * a ** 2 / 2

# print(poleszesciokataforemnego(2))

# def powitanie(imie):
#     return f
# powitanie
import math
def granatoslup(a,h):
    Pp = (3 * math.sqrt(3)/2)* a ** 2
    return Pp * h 
print(granatoslup(5,5)) 
    












































































































































































































































































































