半径Rの円の周長を出力する問題です。
提出
import math
r = int(input())
print(2*r*math.pi)
円の周長は「2 π r(r:半径)」であるので、これを計算します。
mathモジュールのpiは、円周率を返します。
import math
print(math.pi) #3.141592653589793
ただ、今回の問題は、10−2以下の絶対誤差・相対誤差が許容されるので、これを使わずに、「3.14」を掛けても問題ないです。