mfgnik

Untitled

Apr 15th, 2020
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. import math
  2.  
  3.  
  4. def area(radius):
  5.     return math.pi * radius ** 2
  6.  
  7.  
  8. print(area(float(input())))
Advertisement
Add Comment
Please, Sign In to add comment