# 문제에선 소수점 6자리까지 출력이 되어있지만 그럴경우 메모리 초과가 뜬다
# 4로 줄이니까 맞았습니다.
r = int(input())
import math
print('%.4f' % (math.pi * r * r))
print('%.4f' % (r * r * 2))

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

백준 2798번(python)  (0) 2019.07.06
백준 1002번(python)  (0) 2019.07.05
백준 4153번(python)  (0) 2019.07.05
백준 3009번(python)  (0) 2019.07.05
백준 1085번(python)  (0) 2019.07.05