Help me in solving PYTH25 problem[[[

My issue

fetching wrong answer in output terminal

My code

# Update your code below this line
# Declare variables and assign values
radius = 8.9
pi = 3.14

# Calculate the area of the circle
area = pi * (radius ** 2)

# Output the area
print("Area of a circle is", area, "square cm")

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

@shaikasif27
U have to do it like this.

# Solution as follows

pi = 3.14
radius = 8.9

area = pi * radius * radius

print(area)

in this task you need to print the area only , no need to print area of the circle is Area square cm
Hope this helps!