class circle{
public:
circle(float r=0){this->r=r;}
float area();
{return 3.14*r*r;}
private:
float r;
};