#给一个半径,求圆的面积和周长,圆周率3.14

r = int(input('r='))
print('area='+str(3.14*r*r))
print('circumference='+str(2*3.14*r))

 

相关文章: