import math
def calc(c):
# Write your code here
radius=(c/(2*math.pi))
area=(math.pi*radius*radius)
x=round(radius,2) # for roundoff float x=(number, place)
y=round(area,2)
return(x,y)
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
c = int(input().strip())
result = calc(c)
fptr.write(str(result) + '\n')
fptr.close()
Comments
Post a Comment