#include "stdafx.h" #include using namespace std; struct punkt { int x; int y; void kuva() { cout << "(" << x << ", " << y << ")" << endl; } };