Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from math import pi
- r = float(input())
- calculated_area = pi * (r ** 2)
- calculated_parameter = 2 * pi * r
- print(f'{calculated_area:.2f}')
- print(f'{calculated_parameter:.2f}')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement