본문 바로가기
백준 알고리즘/구현

백준 3053번 파이썬

by paysmile 2018. 10. 1.

import math

r = int(input())
print("{0:.6f}".format(round(r*r*math.pi,6)))
print("{0:.6f}".format(round(r*r*2,6)))


'백준 알고리즘 > 구현' 카테고리의 다른 글

백준 10871 c++  (0) 2019.01.01
1942번 c++  (0) 2018.12.31
백준 2490번 파이썬  (0) 2018.09.30
백준 5430 파이썬  (0) 2018.09.24
백준 10866번 파이썬  (0) 2018.09.18