r=float(input("请输入圆的半径:"))
pi=3.14 #变量pi表示圆周率
c= ①
s=pi*r**2
print("圆的周长:",c)
print("圆的面积:", ② )
a=21
b=10
c=a+b
c=a-b
print(c)