#include using namespace std; struct coordinates { int x; int y; }; int main() { coordinates position, pos2; position.x = 10; position.y = 7; pos2 = position; cout << pos2.x << " " << pos2.y << endl; return 0; }