from math import sqrt

def pole_szesciakata(a=5):
    return 3 * sqrt(3) * a ** 2 / 2
    

print("Pole wynosi:", pole_szesciakata(3))