import sys
import math
input = sys.stdin.readline
R = int(input())
print (round(math.pi * pow(R, 2), 6))
print (round(R * R * 2, 6))
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 4344번 평균은 넘겠지 (C++) (0) | 2022.06.14 |
---|---|
[백준] 4153번 직각삼각형 (파이썬) (0) | 2022.06.14 |
[백준] 3052번 나머지 (C++) (0) | 2022.06.14 |
[백준] 3009번 네 번째 점 (파이썬) (0) | 2022.06.14 |
[백준] 2941번 크로아티아 알파벳 (파이썬) (0) | 2022.06.14 |