#include <iostream.h>
class point{ private:
float x,y;
public:
void f1(float a,float b){
x=a;y=b;
} void get(){
cout<<a<<b<<endl;
} };
main(){
point a;