6 lines
68 B
Python
6 lines
68 B
Python
import math
|
|
|
|
r = int(input())
|
|
print(r**2 * math.pi)
|
|
print(r**2 * 2)
|