Help me in solving PYTH25 problem

My issue

Update your code below this line

pi = 3.14
radius = 8.6

area = pi * radius * radius

print(area)

where is the mistake

My code

# Update your code below this line

pi = 3.14
radius = 8.6 

area = pi * radius * radius

print(area)

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

@ayaruto
The radius is 8.9 not 8.6.

same …