Given an n-sided regular polygon n, return the total sum of internal angles (in degrees).
n
SumPolygon(3) ➞ 180 SumPolygon(4) ➞ 360 SumPolygon(6) ➞ 720