#Area of the rectangle
width=int(input(“Enter the width of Rectangle: “))
height=int(input(“Enter the height of Rectangle: “))
area=width*height
print(“area of Rectangle is”,area)
output
Enter the width of Rectangle: 5 Enter the height of Rectangle: 6 area of Rectangle is 30
#Area of circle
PI=3.14
R=float(input(“Enter the Redious of circle: “))
area=PI*R*R
print(“area of circle is”,area)
output
Enter the Redious of circle: 10 area of circle is 314.0
#Area of triangle
Height=int(input(“Enter the Height of triangle: “))
Base=int(input(“Enter the Base of triangle: “))
area=1/2*Height*Base
print(“area of triangle is”,area)
output
Height=int(input(“Enter the Verticle Height of Parallelogram: “))
Base=int(input(“Enter the Base of Parallelogram: “))
area=Height*Base
print(“area of Parallelogram is”,area)
length=int(input(“Enter the length of side: “))
area=length*length
print(“area of Square is”,area)