import math

def area_poligon(r, n):
    return (n*r**2)/2 * math.sin(2*math.pi/n)
