baekjoon 20260224

This commit is contained in:
songyc macbook 2026-02-24 22:19:44 +09:00
parent f554472226
commit 02c78bc9a5

View File

@ -0,0 +1,3 @@
from math import pi as p
R = int(input())
print('\n'.join(map(str,[round(p*R**2,6) if i == 0 else 2*R**2 for i in range(2)])))