Simple formula generator

from math import *
d = float(input ("diameter : "))
A = d**2 / 4
print ("Area of the circle ", A)

Comments

Popular Posts