#include using namespace std; struct point { float x; float y; friend istream &operator>>(istream&, point&); }; istream &operator>>(istream wejscie, point& ex) { wejscie >> ex.x>>ex.y; return wejscie; } int main() { point p; p.x=10; p.y=11; cout<