/*¶ê§Î¶gªø­pºâ*/
#include

int main()
{
cout<<"-Calculate the circumference of a circle-"<<endl;
cout<<"Radius = "<<10<<endl;
cout<<"Circumference = "<<(2*3.14*10)<<endl;
return(0);
}