*****
This Middle School Mathematics Program will tell you the exterior angle when you know the sides
*****
a = int(input("Enter Sides of the Regular Polygon : "))
b = (a - 2) * 180
c = b/a
d = 360 - c
print("Each Exterior Angle's measure of the Polygon is",round(d),"degree")